Starting vsftpd for vsftpd: 500 OOPS: vsftpd: not configured for standalone, must be started from inetd
Posted by alex in Errors at 3:15 PMEarlier today I was configuring VSFTPD on a new server. After installing via the yum package manager on a CentOS server and copying the configuration from another server to mimic its behavior I attempted to start VSFTD and it failed with the error noted in detail below. After the error details there is information on what caused the problem followed by how I was able to resolve the issue.
Error Starting VSFTPD On A Linux Server:
[root@dev vsftpd]# /etc/init.d/vsftpd start Starting vsftpd for vsftpd: 500 OOPS: vsftpd: not configured for standalone, must be started from inetd [FAILED] [root@dev vsftpd]#
As you can see above the error states that VSFTPD must be started from inetd however this is not typical for a VSFTPD installing via yum. After further investigation I noticed that when I copied the config, I simply used copy/paste, I missed numerous configuration options. The one listed below is what causes the error noted above.
VSFTPD Listen Configuration Option In vsftpd.conf:
listen=yes
Once the listen configuration variable was added to /etc/vsftpd/vsftpd.conf I was able to start VSFTPD without issue as shown below.
Start VSFTPD Using init.d Script:
[root@dev vsftpd]# /etc/init.d/vsftpd start Starting vsftpd for vsftpd: [ OK ] [root@dev vsftpd]#
Silly mistake on my part but figure someone else may leave out “listen=yes” and need the information.
|
|
|
|




Entries (RSS)
Hello. I’m getting the same error. Can you tell me what you do to open the file with Text edit? What command? Because i see there’s some ways to do this but non of them works.
Jacob
[Reply]
Kent C Reply:
July 6th, 2012 at 7:18 PM
type “vi” infront of the conf or text file like
vi textfile.file
[Reply]
alex Reply:
July 15th, 2012 at 10:50 AM
Hello Kent,
Thanks for offering Jacob this suggestion. I definitely agree because vi is my favorite text editor!
Thanks.
alex
[Reply]
alex Reply:
July 15th, 2012 at 10:49 AM
Hello Jacob,
As Kent mentioned vi ia a great text editor. There are also many others such as joe, nano, emacs, etc.
Hope you were able to learn vi as it is a very helpful tool to use when managing Linux servers.
Thanks.
alex
[Reply]