Install and Configure VSFTPD FTP Server – RHEL 6 – CentOS 6

Install and Configure VSFTPD FTP Server – RHEL 6 – CentOS 6When 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 files and directories
use_localtime=YES

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.