一、vsftpd安装
1、安装服务
yum install -y vsftpd
2、开启服务
systemctl enable vsftpd.service
systemctl start vsftpd.service
3、查看端口
netstat -antup | grep ftp
4、关闭防火墙
systemctl stop firewalld
5、关闭SELinux(重要)
setenforce 0
二、配置
vim /etc/vsftpd/vsftpd.conf
修改如下内容
文章评论