Install and Configure VSFTPD FTP Server – RHEL 6 – CentOS 6
When you think of transferring files, you probably think of the File Transfer Protocol (FTP) because it has been around for so long. While simple to use, FTP has become obsolete because it lacks the ability for secure file transfers. vsftpd (Very Secure File Transport Protocol Daemon) is a secure, fast FTP server for Unix/Linux systems. Steps: 1. Install vsftpd yum install vsftpd 2. Enable vsftpd service chkconfig vsftpd on 3. Start vsftpd service service vsftpd start 4. Check ftp port netstat -ntl | grep 21 5. Test ftp server access FTP server is running and anonymous access is enabled by default 6. Disable anonymous access Edit /etc/vsftd/vsftpd.conf anonymous_enable=NO 7. Enable dual logging dual_log_enable=YES It created /var/log/vsftpd.log file which uses vsftpd log format 8. Enable server time for display of…







