Install VSFTPD with CentOS
$yum install vsftpd
Turn on vsftpd auto start with
$chkconfig –level 235 vsftpd on
Open vsftpd.conf
$nano /etc/vsftpd/vsftpd.conf
Now Add all this lines below the vsftpd.conf
anonymous_enable=NO
chroot_local_user=YES
listen_port=XXXXX ( Port should be above 1024 )
Restart vsftpd with service vsftpd restart.
$service vsftpd restart