500 OOPS: vsftpd: refusing to run with writable root inside chroot(),如下图
解决方案
1. 在服务器上修改 vsFTPd 的配置文件 vsftpd.conf,保存后退出。
bash
vim /etc/vsftpd/vsftpd.conf
添加一行配置命令
bash
allow_writeable_chroot=YES
2. 重启 FTP 服务。
bash
systemctl restart vsftpd
或者
bash
service vsftpd restart
确保配置更改生效,问题应该得到解决。