Linux – Can’t start VSFTPD

ftplinuxvsftpd

I cannot get my FTP server to start, I have checked by using top and it does not show up. When I use sudo /etc/init.d/vsftpd restart I get this "Stopping FTP server: No /usr/sbin/vsftpd found running; none killed. vsftpd. Starting FTP server: vsftpd."

When I run sudo vsftpd I get this "500 OOPS: config file not owned by correct user, or not a file"

I tried sudo chown michael /etc/vsftpd.conf as when I run sudo chown michael /etc/vsftpd/vsftpd.conf I get the no such file error. But I still cannot start the server.

Am I asking this is the wrong place?

Best Answer

root is suppose to own vsftpd.conf

sudo chown root /etc/vsftpd.conf

Then try starting the sevice again

Related Question