Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Starting vsftp from Red Hat 9.0

Status
Not open for further replies.

wattie29

Technical User
May 28, 2003
83
ZA
Hello anyone know the command to start the vsftp deamon from the command line. I normally do this via a web link which is now not available and would like to know the linux command.

Any help would be great.
 
service vsftpd start"

However, I think that RedHat configures the vsftpd service to run behind xinetd, which means that you'd want to try the command above, if it doesn't work enter:

"lsof -Pni| grep -i :21"

You're looking to see if anything is running on TCP port 21. You may find that the inetd/xinetd service is already listening on the port.

Hosting Solutions for Home or Business.
 
if it's under control of xinetd, then this will show you:

foxtrot(~)$ chkconfig --list finger
finger off

If it has it's own init script, you will see this:

foxtrot(~)$ chkconfig --list httpd
httpd 0:eek:ff 1:eek:ff 2:eek:ff 3:eek:ff 4:eek:ff 5:eek:ff 6:eek:ff

Either way, you can make them automatically start with (for example):

foxtrot(~)$ sudo chkconfig finger on
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top