服务项目:网站建设、仿站、程序开发、APP开发设计、移动网站开发设计、企业网站设计、电子商务网站开发、网站维护、网站推广、UX/UI 、HTML5、CSS3、JS / Jquery ...
四川浚浚科技有限公司
四川浚浚科技有限公司 (开发设计官网)TEL : 15308000360 / QQ : 38585404

您的位置:首页 > 技术经验 > 服务器 > 正文

vsftp不能上传下载问题解决
技术支持服务电话:15308000360 【7x24提供运维服务,解决各类系统/软硬件疑难技术问题】

我的系统:64位RHEL6

1、问题:vsftp登录报错”500 OOPS: cannot change directory:/home/*******”
解决:
 A、首先检查权限问题;
 B、ftp服务器连接失败,错误提示:
500 OOPS: cannot change directory:/home/******* 500 OOPS: child died
当你看到以上提示时,试着在输入以下命令解决:
(1) [root@ linuxx vsftpd]#setsebool -P ftpd_disable_trans 1
[root@ linuxx vsftpd]#service vsftpd restart
或使用以下解决:
(2) [root@ linuxx~]#/usr/sbin/setsebool -P ftp_home_dir 1 ################################################################################### 2、如果使用setsebool -P ftpd_disable_trans 1 //加-P表示永久性 提示错误:
[root@ linuxx vsftpd]# setsebool -P ftpd_disable_trans 1
libsemanage.dbase_llist_set: record not found in the database (No such file or directory).   libsemanage.dbase_llist_set: could not set record value (No such file or directory).
Could not change boolean ftpd_disable_trans Could not change policy booleans
解决方法: 可能直接使用下面这个一条就可以解决了:
[root@ linuxx ~]# /usr/sbin/setsebool -P ftp_home_dir 1
再试试,如果还是不行的话再使用下面完全方式:
[root@ linuxx vsftpd]# setsebool allow_ftpd_full_access 1
[root@ linuxx vsftpd]# setsebool allow_ftpd_use_cifs 1
[root@ linuxx vsftpd]# setsebool allow_ftpd_use_nfs 1
[root@ linuxx vsftpd]# setsebool -P ftp_home_dir 1
[root@ linuxx vsftpd]# setsebool httpd_enable_ftp_server 1
[root@ linuxx vsftpd]# setsebool tftp_anon_write 1
[root@ linuxx vsftpd]# service vsftpd restart
关闭 vsftpd:[确定] 为 vsftpd 启动 vsftpd:[确定]
[root@ linuxx vsftpd]# getsebool -a | grep ftp
allow_ftpd_anon_write --> off
allow_ftpd_full_access --> on
allow_ftpd_use_cifs --> on
allow_ftpd_use_nfs --> on
ftp_home_dir --> on
ftpd_connect_db --> off
httpd_enable_ftp_server --> on
sftpd_anon_write --> off
sftpd_enable_homedirs --> off
sftpd_full_access --> off
sftpd_write_ssh_home --> off
tftp_anon_write --> on
重启vsftpd,即可解决问题。



上一篇:Apache Rewrite ? 匹配问号的写法
下一篇:linux服务器Read-only file system的修复过程

相关热词搜索:vsftp