CentOS的FTP中vsftpd错误500 OOPS: vsftpd: refusing to run with writable root inside chroot()解决方法

CentOS中部署vsftpd后,使用FTP连接时报错如下:500 OOPS: vsftpd: refusing to run with writable root inside chroot()  

解决方法:

方法1:

chroot_local_user=YES #锁定用户登录ftp后,只能到自己的家目录下,不能随便切换到其它目录。但是普通系统用户默认是可以在自己的家目录里写文件的,vsftp出于安全性要求,
如果锁定了用户的ftp登录目录,则所在目录不能有写权限。

方法2: Continue reading "CentOS的FTP中vsftpd错误500 OOPS: vsftpd: refusing to run with writable root inside chroot()解决方法"