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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Setting up FTP Server on RedHat 9

Status
Not open for further replies.

hornet77

MIS
Oct 14, 2003
27
US
Not sure if I'm trying to make this more complicated than it really is but...

Soon, I will be doing a fresh install of RedHat 9 on a machine and I need to make it a FTP Server. What are the steps (if different from a normal install) involved in this? I will probably be using vsftp.

Thanks!
 
vsftpd is well documented and widely preferred for security.
check google and the linux documentation project ( tldp.org ) for more howto's



Surfinbox.com Business Internet Services - National Dialup, DSL, T-1 and more.
 
RH9 comes as standard with vsftp. All you need to do to get a basic ftp service running on it is:
/etc/init.d/vsftpd start
The config file is pretty easy to understand and lives in /etc/vsftpd/vsftpd.conf
If you need it to run when the machine starts do
chkconfig vsftpd on
 
Be sure when installing RH to install ftp as one of the packages.

Once installed, check to see if ftp (vsftpd) is running after boot by typing "netstat -a" and looking for the ftp service. If it is not and you wish it to start vsftpd automatically at boot up, use the setup program by typing 'setup', selecting 'system service' and then checking the 'vsftp' option. To manually start and stop use:

/etc/rc.d/init.d/vsftpd start
/etc/rc.d/init.d/vsftpd stop
/etc/rc.d/init.d/vsftpd restart
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top