500 OOPS error in vsFTPd
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.
Share and Bookmark
Shortlink: http://digitizor.com/?p=30
Discus this topic in the Digitizor Forums.
Leave a Comment / See what others have said
Related Articles
- How-To enable root login in Fedora 10 at the Gnome Login / Via GUI
- How to change the default error document pages in Squid?
- The Definitive Guide to 'Error Codes in FTP'
- A guide to configuring Access Control Lists (ACL) in squid
- How to fix the Cyberoam “crclient already logged in with process id” error in linux ?
- Starting Fedora 10 in graphical or text mode
- The definitive 'Plymouth' Guide for Fedora 10
- Disabling Shutdown Via Ctrl-Alt-Del on a Linux box



Phone
works, thnx!
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!