1 安装vsftpd组件
安装完后,有/etc/vsftpd/vsftpd.conf 文件,是vsftp的配置文件。
yum -y install vsftpd
2 添加一个ftp用户
此用户就是用来登录ftp服务器用的。
useradd -s /sbin/nologin -d /opt/ftp ftpuser
passwd ftpuser
3 修改selinux
getsebool -a | grep ftp
setsebool -P allow_ftpd_full_access on
4 修改/etc/vsftpd/vsftpd.conf
找到anonymous_enable这个配置项,默认是YES,修改成NO,表示不允许匿名用户登录
最后面加上:
pasv_promiscuous=YES
allow_writeable_chroot=YES
5 下载FileZilla