Name : vsftpd – Very Secure FTP Daemon
Info : The “Very Secure FTPD” is a *nix (Unix, Linux) FTP Server
How to install :
Login as root and do
yum install vsftpd
Start the vsftpd
service vsftpd start
set it run automatically after reboot via chkconfig
chkconfig vsftpd on
Troubleshooting :
530 Permission denied
If you get that error , you need to check ftpusers & user_list files at /etc/vsftpd
In my case :
I want to allow root login via ftp
pico /etc/vsftpd/ftpusers
# Users that are not allowed to login via ftp
#root < --- comment out this line for allow root login via ftp
bin
daemon
adm
lp
sync
shutdown
halt
mail
news
uucp
operator
games
nobody
And also user_list
pico /etc/vsftpd/user_list
# vsftpd userlist
# If userlist_deny=NO, only allow users in this file
# If userlist_deny=YES (default), never allow users in this file, and
# do not even prompt for a password.
# Note that the default vsftpd pam config also checks /etc/vsftpd/ftpusers
# for users that are denied.
#root < --- comment out this line
bin
daemon
adm
lp
sync
shutdown
halt
mail
news
uucp
operator
games
nobody
That all ,