CentOS如何开启ftp服务
1,安装vsftpd
yum install vsftpd -y
2,启动ftp服务
service vsftpd start
3,加入开机启动
chkconfig vsftpd on
netstat -nltp | grep 21
(查看开启的21端口)
4,更改配置
进入 vi /etc/vsftpd/vsftp.conf 编辑
设置禁用匿名用户
5,重启ftp服务
systemctl vsftpd restart
systemctl restart vsftpd.service
systemctl vsftpd restart