如何在centos7下搭建ftp服务器
时间:2020-05-22 10:26
1、安装vsftpd这款ftp服务器软件,命令如下: 2、设置vsftpd服务开机自启动,然后重启服务,查看ftp服务端口,命令如下: 安装完成后需要重启vsftpd服务。 3、编辑vsftpd主配置文件/etc/vsftpd/vsftpd.conf 修改anonymous_enable = NO,这样可以禁止匿名登录。 去掉chroot_local_user = yes前的注释,限制用户访问家目录之外的地方。 4、创建ftp用户,设置用户无法登录服务器系统并且家目录在/var/www/html下 5、给其他人修改文件夹的权限:chmod o+w /var/www/html/ 6、关掉selinux 重启系统。 在系统内部尝试自己访问, ftp ip地址,应该能成功登陆,继续配置外网访问 7、关闭防火墙 推荐教程:centos教程 以上就是如何在centos7下搭建ftp服务器的详细内容,更多请关注gxlcms其它相关文章!yum install -y vsftpd
#chkconfig vsftpd on
#systemctl enabled vsftpd.service
#systemctl restart vsftpd.service
#netstat -antup|grep ftp
vi /etc/selinux/config
systemctl stop firewalld.service