Install and configure vsftpd to configure FTP Server in RHEL/Centos

### Configure Vsftpd [root@testos ~]# yum -y install vsftpd ### Edit/Update vsftpd Configuration file [root@testos ~]# vi /etc/vsftpd/vsftpd.conf # line 12: no anonymous anonymous_enable=NO # line 82,83: uncomment ( allow ascii mode ) ascii_upload_enable=YES ascii_download_enable=YES # line 100, 101: uncomment ( enable chroot ) chroot_local_user=YES chroot_list_enable=YES # line 103: uncomment ( specify chroot list ) … Read more