You Are Here: Home » Linux » Networks » Troubleshoot

500 OOPS error in vsFTPd

By on May 30th, 2009     

If you get the error while starting vsFTPd, which reads somewhat like this:

[root@fed ~]# /etc/init.d/vsftpd start
Starting vsftpd for extern: 500 OOPS: vsftpd: not configured for standalone, must be started from inetd
[FAILED]

Don`t panic. Normally inetd is not included on a default Fedora 8 installation. The default network daemon used is the xinetd. So starting vsftpd from inetd is ruled out of question. So what you do to fix the problem is this:

Open in a text editor, your /etc/vsftpd/vsftpd.conf file as root. Now locate the line which reads listen=. Set the value of this listen directive to YES, which should now read as listen=YES . Make sure, the line containing this directive is un-commented. This sets vsFTPd for running in the standalone mode. If you notice, the same has been mentioned in the comments area for the listen directive in the same config file. This shows that most of your linux troubleshooting can be done by suitably tinkering the proper .conf file.




         Submit to Reddit     Stumble


Related Posts by Tags: , ,



  • Pingback: The Definitive Guide to ‘Error Codes in FTP’ « Digitizor

  • http://filezz.ru Maxim

    works, thnx!

  • Jaime M.

    Hi! that error is generate for Selinux plz do the following actions:

    [root@sun02 vsftpd]# getenforce
    Enforcing
    [root@sun02 vsftpd]# getsebool -a | grep ftp
    allow_ftpd_anon_write –> off
    allow_ftpd_full_access –> off
    allow_ftpd_use_cifs –> off
    allow_ftpd_use_nfs –> off
    allow_tftp_anon_write –> off
    ftp_home_dir –> on (change that to on in ur case this option is off)
    ftpd_disable_trans –> off
    ftpd_is_daemon –> on
    httpd_enable_ftp_server –> off
    tftpd_disable_trans –> off
    [root@sun02 vsftpd]# setseboll -P ftp_home_dir on

    This is all that u want to need.

    Now do

    service vsftpd restart and test again!

    Good Luck!



500 OOPS error in vsFTPd was originally published on Digitizor.com on May 30, 2009 - 8:50 pm (Indian Standard Time)