Results 11 to 13 of 13
Originally Posted by atreyu
Have you put anything in your tcp_wrappers config files, /etc/hosts.allow and /etc/hosts.deny? I don't know why that would be a problem, but it is one of ...
- 08-17-2011 #11Just Joined!
- Join Date
- Aug 2011
- Posts
- 12
- 08-17-2011 #12Linux Guru
- Join Date
- May 2011
- Posts
- 1,843
So some other xinetd-controlled process is running and listening on port 21, I think that would cause vsftpd to fail to start.
As a quick test, try this to see if that is it:
Then make sure nothing is listening on that port:Code:service xinetd stop
Then fire up vsftpd:Code:netstat -tulnp|grep :21
Run the netstat command again and see if it is listening.Code:service vsftpd start
If that is it, then the culprit is probably gssftp (kerberized FTP server). You can see if it is enabled with:
If it is on, disable it with:Code:chkconfig --list gssftp
FYI, netstat lists xinetd b/c xinetd is a master daemon that controls various network-related sub-daemons. Look in /etc/xinetd.d/ to see them all. Files in there are xinetd services and any file with disable = no is enabled and will be run when xinetd is started.Code:chkconfig gssftp off
- 08-17-2011 #13Just Joined!
- Join Date
- Aug 2011
- Posts
- 12


1Likes
Reply With Quote