1819787 Members
3515 Online
109607 Solutions
New Discussion юеВ

Re: ftp services

 
SOLVED
Go to solution
muthamilan
Frequent Advisor

ftp services

hello friends
I need your help once again.actually i installed redhat linux 2.1As on compaq proliantML350.now i'm facing problem on ftp services.
In my server i cann't start ftp services.kindly guide me friends.
thanks and regards
S.Muthamilan
4 REPLIES 4
Vernon Brown_4
Trusted Contributor

Re: ftp services

I'm not sure about RedHat 2.1A but my Fedora Core 1 uses vsftpd. I can start it with:

/etc/init.d/vsftpd start

You may have /etc/xinetd.d/wuftpd

In that case you need to edit the wuftpd file and change disable = yes to no

Vern
Steven E. Protter
Exalted Contributor

Re: ftp services

Red Hat went to vsftp probably with your version.

check the files in /etc/xinetd.d

There is a file in there to enable ftp gssftp or something similar

make sure disable = no in this file

vsftp is no longer managed by the xinetd daemon, it is stopped/started and managed on its own.

service vsftpd start

chkconfig --level 12345 vsftptd on
# sets the system to start the service at boot.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Vitaly Karasik_1
Honored Contributor
Solution

Re: ftp services

RHEL 2.1 default ftp server is wu-ftpd, so

1) check if wu-ftpd is installed :

rpm -q wu-ftpd

2)

chkconfig wu-ftpd on
muthamilan
Frequent Advisor

Re: ftp services

thanks friends
i solved this issue with your's help