500 OOPS: vsftpd: refusing to run with writable root inside chroot()

Ubuntu 12.04 sunucu üzerinde vsftpd servisi güncelleme sonrası 500 OOPS: Vsftpd: Refusing to Run With Writable Root Inside Chroot () bu hatayı vermeye başladı. Vsftpd servisi başlamıyordu. Güncellemeden kaynaklı olduğunu tespit ettikten sonra Debian paketleri bizi kurtarıyor. Ufak bir güncelleme ve iki satır ekleme ile sorun çözülüyor.

Debian/Ubuntu Sürümlerinde

echo allow_writeable_chroot=YES >> /etc/vsftpd.conf
echo seccomp_sandbox=NO >> /etc/vsftpd.conf
service vsftpd reload

Centos/Fedora/Redhat Sürümlerinde

chmod a-w /home/kullanici
echo allow_writeable_chroot=YES >> /etc/vsftpd.conf
service vsftpd reload