1. Use the Rpm-qa|grep vsftpd command to check if the installation is already installed, if FTP is not installed, using the Yum install-y vsftpd.
2. Start:/ETC/INIT.D/VSFTPD start
Boot:chkconfig--level vsftpd on
3. Set FTP Permissions
Vi/etc/vsftpd/vsftpd.conf
Change the anonymous_enable=yes to Anonymous_enable=no;
Turn off SELinux (modify/etc/selinux/config file, set selinux= disabled, restart) or
Setsebool-p Ftp_home_dir on and then shipped/ETC/INIT.D/VSFTPD start
Otherwise the error "Oops:cannot change directory" will be reported.
4. Add FTP Account and directory
Useradd-s/sbin/nologin FTP2 [You can specify the user's home directory using-d]
passwd FTP2
Chmod-r 755/home/pwftp
5. Log in with your account FTP2 ftp:
1) If login on Windows, enter the FTP://IP address in the Address bar, enter the account number and password;
2) in Linux access to FTP needs to install the FTP package, and then enter the FTP IP address, enter the account and password;
Linux Installation FTP