How to install FTP server on CentOS

How to install FTP server on CentOS

#yum install vsftpd
#chkconfig vsftpd on
#service vsftpd start

#nano /etc/vsftpd/vsftpd.conf       (uncomment the following)

anonymous_enable=NO   (disallow anonymous login)
ascii_upload_enable=YES
ascii_download_enable=YES
ftpd_banner=Welcome to DATACENTER FTP service.

Read more