Fedora 15
Sponsored Link

FTP Server - ProFTPD2011/05/28

 
Install ProFTPD to configure FTP server to transfer files.
[1] Install ProFTPD
[root@www ~]#
yum -y install proftpd
[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 (via systemctl): Starting proftpd: [ OK ]
[ OK ]
[root@www ~]#
chkconfig proftpd on
Matched Content