我使用vsftpd为Ubuntu配置了FTP服务器。但是,我无法访问服务器。
Status: Connecting to IP
Status: Connection established, waiting for welcome message...
Response: 220 (vsFTPd 2.3.2)
Command: USER userhere
Response: 331 Please specify the password.
Command: PASS ***************
Response: 500 OOPS: could not read chroot() list file:/etc/vsftpd.chroot_list
Error: Critical error
Error: Could not connect to server
问题解决了!注释行chroot_list_enable=YES
发布于 2012-01-29 02:45:52
快速修复将是禁用Vsftpd的conf文件中的chroot_list_enable开关(通常在/etc/vsftpd.conf中)
#chroot_list_enable=YES
#chroot_list_file=/etc/vsftpd.chroot_list
注释掉上面提到的行,看看它是否有帮助。
发布于 2012-12-04 20:26:46
你必须申请以下命令,
setsebool -P ftp_home_dir on
setsebool -P allow_ftpd_full_access=1
我解决了这个方法。
https://serverfault.com/questions/354671
复制相似问题