centos开启ftp服务

1、查看是否已安装ftp软件

which vsftpd

2、如果没有安装,则进行安装

yum install -y vsftpd

3、开启ftp服务

service vsftpd start

4、查看端口,看ftp是否开启

netstat -tlnp
centos开启ftp服务_第1张图片
查看端口

5、查看配置

grep -v "#" /etc/vsftpd/vsftpd.conf

6、访问ftp

ftp://59.56.19.X

7、如果无法访问,关闭防火墙再试下

systemctl stop firewalld.service

8、添加ftp的默认21号端口到防火墙

 firewall-cmd --zone=public --add-service=ftp --permanent

9、重启防火墙

systemctl restart firewalld.service

10、可正常访问了,服务端默认路径为

/var/ftp/pub/

这个讲的很详细,如果我的方法不行可以试试这个
http://www.cnblogs.com/leoxuan/p/8329998.html

你可能感兴趣的:(centos开启ftp服务)