出自新浪 http://blog.sina.com.cn/s/blog_4563cd990100loaw.html
cannot change directory:/home/***
ftp服务器连接失败,错误提示:
500 OOPS: cannot change directory:/home/*******
500 OOPS: child died
解决方法:
转载
精选
2010-12-21 10:45:59
2996阅读
500 OOPS: cannot change directory:/home/
他的系统是CentOS,是RH派系的。我把vsftpd安装配置好了,以为大功告成,但客户端访问提示如下错误:500 OOPS: cannot change directory:/home/ftp原因是他的CentOS系统安装了SELinux,因为默认下是没有开启FTP的支持,所以访问时都被阻止了。//查看SELin
转载
精选
2014-12-09 13:26:17
655阅读
http://bbs.51cto.com/topic/thread-908715.html
http://bbs.51cto.com/thread-908715-1-1.html
最近在使用ftp过程中遇到这个问题,输入正确的用户名和密码依然提示500 OOPS: cannot change directory: 无法登陆.
原来是忘了关掉se
转载
精选
2012-12-13 16:37:16
860阅读
配置好vsftp后,开了root用户上传权限,也关了系统的防火墙,但ftp连接的时候依然还会出现 "500 OOPS:cannot change directory:/root" 错误,如何解决呢?
经过本人的多次摸索,问题终于有了解决的方案。
如何开启root用户的上传权限,如何关闭系统的防火墙,我就不再多废话了,不懂的朋友google去。
言归正传,在开了ro
原创
2012-03-18 14:16:30
1497阅读
配置好 vsftpd 服务后,使用命令行连接 ftp 时报错查了很多资料,最后终于找到解决办法了。在终端下输入如下命令:使用 sestatus 命令查看 selinux 状态,找到其中的间 ftp_home_dir 项,该项状态为 off[root@liangwode log]# sestatus -b| grep ftp
allow_ftpd_a
原创
2013-11-17 21:46:36
763阅读
这个报错需要检查
1、/etc/passwd 用户的主目录
2、/etc/vsftpd/vuser_conf 下每个用户的local_root
3、每个用户目录给ftpuser加上rwx权限,一定要有执行权限
转载
2015-12-01 16:36:00
289阅读
2评论
今天在配置ftp时,所有配置完毕后,,启动vsftpd,通过用户登陆ftp,居然报错:
C:\>ftp 10.10.1.239
Connected to 10.10.1.239
220 (vsFTPd 2.0.5)
User (10.10.1.239:(none)): xaftp
331 Please specify the password.
Password:
500 OO
原创
2011-03-25 13:46:04
3509阅读
点赞
1评论
[root@dbserver ~]# su - mysqlLast login: Thu Aug 31 17:20:03 CST 2017 on pts/1su: warning: cannot change directory to /home/mysql: No such file or directory-bash-4.2$ exit登出解决方法[root@dbserver ~...
转载
2021-07-28 10:39:31
2442阅读
linux FTP服务器提示“500 OOPS: cannot change directory”错误
CentOS
上测试 FTP 双线服务器验证登录,提示“500 OOPS: cannot change
directory:/home/xxx”,不能切换到用户宿主目录?一看
转载
精选
2014-06-20 15:27:04
1015阅读
原因:Linux系统的SELinux安全策略默认没有开启访问FTP不同目录的支持使用Linux命令:getsebool -a | grep ftp 查看状态 如果看到 ftp_home_dir --> off (表示SELinux没有开启访问不同目录的支持) 解决办法两个(任选其一):直接关闭SELinux安全策略 &
原创
2016-06-06 17:40:40
4771阅读
关键字: 500 oops:cannot change directory:/root
在开了root用户上传权限,也关了系统的防火墙,但ftp连接的时候依然还会出现 "500 OOPS:cannot change directory:/root" 错误,如何解决呢?
解决:
1、 查看 SELinux 的状态: sesta
转载
精选
2010-09-03 21:23:36
1161阅读
2评论
1.ftp服务器连接失败,错误提示:500OOPS:cannotchangedirectory:/home/*******500OOPS:childdied解决方法:1在终端输入命令:setseboolftpd_disable_trans1servicevsftpdrestart就OK了!但是下次重启了还会这样··2在终端输入命令:setsebool-Pftpd_disable_trans1ser
转载
精选
2013-10-10 15:28:06
644阅读
500 OOPS:cannot change directory:/root 问题安装完red hat enterprise linux 5后,ftp不能使用root用户,将/etc/vsftpd/ftpusers和/etc/vsftpd/user_list两个文件中的root注释掉,就是在root前加个#,再运行ftp结果报错500 OOPS:cannot change directory:/r
转载
精选
2014-04-10 12:41:47
2056阅读
在安装完red hat enterprise linux 6.5后,通过ftp不能使用root用户,将/etc/vsftpd/ftpusers和/etc/vsftpd/user_list两个文件中的root通过添加#号注释掉,重启ftp服务:service vsftpd restart后,依然报错:500 OOPS:cannot change dir
原创
2016-01-17 20:46:18
1312阅读
RHEL5 中配置好后,今天想在XP下用ftp连接虚拟机中的linux,但ftp连接的时候会出现 "500 OOPS:cannot change directory:/root" 错误,如何解决呢?
默认下是没有开启FTP的支持,所以访问时都被阻止了。
解决:
1. 查看SELinux设置
&
转载
2011-03-04 19:25:48
7120阅读
点赞
vsftpd出现“Response: 500 OOPS: cannot change directory”解决方法 笔者用的Linux发行版本为centos6.4,当用FTP客户端连接时,出现如下错误提示: Response: 500 OOPS: cannot change directory:/home/liangwodeError: Critical errorError:
转载
2014-11-27 15:35:32
1776阅读
系统:red hat enterprise linux 5 今天按照网上的方法配置了一个vsftp,匿名时可以 访问,但是用root访问时报500 错误,错误如下: Connecting to 192.168.0.16 , 15 dec 2009 09:35:27 < 220 (vsFTPd 2.0.5) > USER test < 331 Please specify the
原创
2023-05-30 05:21:24
1080阅读
centos yum安装ftp 及解决vsftp错误500 OOPS: cannot change directory:/home/**
原创
2016-12-23 14:18:42
10000+阅读
在每次重启linux 服务器的时候 vsftpd 目录有时候会自动关闭掉,每次得去按 setsebool ftp_home_dir 1 开启目录 ftp 才能正常登陆,今天我发现有一个这样的命令以后再也不用按了
&nb
原创
2012-04-26 10:16:01
551阅读
使用客户端登陆ftp 500 OOPS: cannot change directory:/home/virftp解决 可以在windows上使用一ftp客户端来尝试进行登录。这个时候一般都会报一个错误。 无效的用户权限错误 删除ftpuser 里面的root和user_list 里的root 最好关掉linux 的防火墙:chkconfig iptable
转载
2017-02-08 13:58:02
1880阅读