首页 > 运 维 > Mail/FTP > 正文

vsftp出现500 OOPS: cannot change directory的解决办法
2015-08-18 12:48:45   来源:   评论:0 点击: 收藏

如果出现550 create directory operation failed,一般都是SELinux安装机制的事,只要disable SELinux就可以了: vi etc se

       如果出现“550 create directory operation failed”,一般都是SELinux安装机制的事,只要disable SELinux就可以了:

# vi /etc/selinux/config

将 SELINUX=XXX -->XXX 代表级别
改为

SELINUX=disabled

或者

setsebool -P ftpd_disable_trans on     

再或者

setsebool -P  ftp_home_dir  on  

如果不能执行,提示:

Could not change active booleans: Invalid boolean

可以执行以下命令:


setsebool allow_ftpd_full_access  1
setsebool allow_ftpd_use_cifs 1
setsebool allow_ftpd_use_nfs 1
 setsebool ftp_home_dir  1
setsebool httpd_enable_ftp_server 1
setsebool tftp_anon_write 1 

重启vsftpd即可:

service vsftpd restart

相关热词搜索:办法 vsftp

上一篇:FileZilla无法连接ftp服务器的解决方案
下一篇:设置邮件服务器域名解析的方法