CentOS 5
Sponsored Link

FTP Server - ProFTPD2015/01/13

 
Build FTP server to transfer files. Install and configure ProFTPD for it.
[1] Install ProFTPD.
[root@www ~]#
yum --enablerepo=epel -y install proftpd
 
# install from EPEL
[root@www ~]#
vi /etc/proftpd.conf
# line 8: change to your hostname

ServerName       "
www.srv.world
"
# line 10: change to your email address

ServerAdmin      
xxx@srv.world
# add near line 48

# get access log

ExtendedLog     /var/log/proftpd/access.log WRITE,READ default
# get auth log

ExtendedLog     /var/log/proftpd/auth.log AUTH auth
[root@www ~]#
vi /etc/ftpusers
# add users you prohibit to FTP access

test
[root@www ~]#
/etc/rc.d/init.d/proftpd start

Starting proftpd:
[  OK  ]

[root@www ~]#
chkconfig proftpd on
Matched Content