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

How do you get FTP working in RedHat 7.2

Status
Not open for further replies.

bkonner

MIS
Apr 28, 2001
101
US
Howdy,

I am at a loss. I just can not figure out how to allow users to FTP into my Linux server.

Thanks
 
if you chose not to install WU-FTP when you installed linux, then grab the rpm and install it. To make the program start in RedHat you can type setup choose services and scroll down to the bottom and put a check besice it. When your system reboots, you'll have a running FTP server.

To start without a reboot I believe you would want either
service ftp start
or
service wu-ftp start

Hope this helps.
 
BE CERFULL wu-ftpd 2.6.0 is buggy crackers can log on your machine as root !!!

So after downloading latest version install it by doing :
#rpm -ivh wu-ftpd.xxxx.rpm

if you are using xinetd
do:
#chkconfig --list

you may see wu-ftpd (on OR off)

if you want to start it just do:
#chkconfig wu-ftpd on
to if you want to stop it do:
#chkconfig wu-ftpd off


If you are using inetd uncommant the line starting with ftp in the file /etc/inetd.conf

and restart the service with :
#kill -HUP 1
 
You may need to do changes to the /etc/ftpaccess file to suit.

What are the exact problems you are encountering? IBM Certified Specialist - MQSeries
IBM Certified Specialist - AIX 5 pSeries System Administration
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top