http://www.roselady.vip/a/cangjingge/boke/2018/0816/717.html
1、安装vsftpd
yum install vsftpd -y
2、配置Vsftpd
安装完之后我们要对它进行配置,才能正常使用。
编辑vsftpd的配置文件/etc/vsftpd/vsftpd.conf
在配置文件中找到“anonymous_enable=YES”,将"YES"改为"No",将匿名登录禁用。
local_root=/home/ftpuser 用户登入时,所在目录 listen_port=2121 更改监听时的端口
读取生效配置:cat /etc/vsftpd/vsftpd.conf |grep ^[^#]
启动vsftpd服务。service vsftpd start
3、增加FTP账户
useradd ftpuser -s /sbin/nologin
passwd ftpuser
4、使用FTP工具登录即可