Centos7配置ftp服务器

1.226 transfer done (but failed to open directory)登录ftp后不能读取文件,解决方法:
编辑sudo vim /etc/selinux/config 文件,
设置 “SELINUX=disabled”, 保存退出,
重启reboot
重启ftp服务。
2.500 OOPS: vsftpd: refusing to run with writable root inside chroot 原因及解决办法
通过修改配置文件中的选项来解决, 针对标准vsftpd(standonly)模式,
allow_writeable_chroot=YES
针对vsftpd-ext(xinet.d)模式的:
allow_writable_chroot=YES
Centos7的防火墙是firewalld,Centos6用的是iptables,
https://www.cnblogs.com/zl-huang/p/10218775.html
firewalld的常用命令:
命令的方式添加端口:firewall-cmd --permanent --add-port=9527/tcp
1、firewall-cmd:是Linux提供的操作firewall的一个工具;
2、–permanent:表示设置为持久;
3、–add-port:标识添加的端口;
firewall-cmd --zone=public --permanent --add-port=8010/tcp
–zone=public:指定的zone为public;
或者firewall-cmd --zone=public --add-port=21/tcp --permanent
返回success为成功
命令含义:
–zone #作用域
–add-port=21/tcp #添加端口,格式为:端口/通讯协议
–permanent #永久生效
开启内部发送端口firewall-cmd --zone=public --add-port=5555-6666/tcp --permanent
##Add
firewall-cmd --permanent --zone=public --add-port=80/tcp
##Remove
firewall-cmd --permanent --zone=public --remove-port=80/tcp
##Reload
firewall-cmd --reload
复制代码
检查是否生效
firewall-cmd --zone=public --query-port=80/tcp
列出所有的开放端口
firewall-cmd --list-all
查看防火墙状态
systemctl status firewalld.service
启动防火墙
systemctl start firewalld.service
关闭防火墙
systemctl stop firewalld.service
重新启动防火墙
systemctl restart firewalld.service
在开机时启用一个服务:systemctl enable firewalld.service
在开机时禁用一个服务:systemctl disable firewalld.service
查看服务是否开机启动:systemctl is-enabled firewalld.service
查看已启动的服务列表:systemctl list-unit-files|grep enabled
查看ftp的状态
[root@localhost /]# getsebool -a|grep ftp
[root@localhost vsftpd]# setsebool -P allow_ftpd_full_access on
[root@localhost vsftpd]# setsebool -P tftp_home_dir on
链接:https://blog.csdn.net/yds303999450/article/details/77752039
设置开机启动vsftpd ftp服务
chkconfig vsftpd on
windows 本地登陆linux搭建的vsftpd服务器需要关闭防火墙。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值