首页 > 系统服务 > 详细

Linux联接vsftpd:500 OOPS: vsftpd: refusing to run with writable root inside chroot ()错误

时间:2015-05-09 23:39:27      阅读:485      评论:0      收藏:0      [点我收藏+]

当我们限定了用户不能跳出其主目录之后,使用该用户登录FTP时往往会遇到这个错误:

[html] view plaincopy技术分享技术分享
  1. 500 OOPS: vsftpd: refusing to run with writable root inside chroot ()  

这个问题发生在最新的这是由于下面的更新造成的:

[html] view plaincopy技术分享技术分享
  1. - Add stronger checks for the configuration error of running with a writeable root directory inside a chroot(). This may bite people who carelessly turned on chroot_local_user but such is life.  

从2.3.5之后,vsftpd增强了安全检查,如果用户被限定在了其主目录下,则该用户的主目录不能再具有写权限了!如果检查发现还有写权限,就会报该错误。

 要修复这个错误,

方案一:用命令chmod a-w /home/user去除用户主目录的写权限,注意把目录替换成你自己的。

方案二:在vsftpd的配置文件中增加下列两项中的一项 allow_writeable_chroot=YES

技术分享

重启vsftpd服务,用户就只能在自己的主目录活动了

技术分享

原文参考学习大牛文章,感谢:http://blog.csdn.net/bluishglc/article/details/42399439

Linux联接vsftpd:500 OOPS: vsftpd: refusing to run with writable root inside chroot ()错误

原文:http://blog.csdn.net/xiaokui_wingfly/article/details/45606061

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!