RE: Determin which FTP server is running and turn off non secure FTP

2010-06-27 Thread Taylor, Kaia
: Determin which FTP server is running and turn off non secure FTP FTP control channel is on port 21, data is on 20 (for active ftp). SFTP uses the SSH daemon, so runs on port 22. It has been my experience that the pure-ftpd init script is far from graceful, as Eric pointed out, the error

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-24 Thread Dan Dubovik
rpm -qa | grep ftp ? also chkconfig --list at the bottom of the list will be the xinetd based services. Find the FTP daemon in there, and: chkconfig [daemon_name] off On Wed, Jun 23, 2010 at 10:56 PM, walter tocalini curo...@gmail.com wrote: Keith let asume that you use yum to install

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-24 Thread Eric Cope
If you FTP to the server, does it reply with the server daemon name? Eric On Thu, Jun 24, 2010 at 11:51 AM, Dan Dubovik dand...@gmail.com wrote: rpm -qa | grep ftp ? also chkconfig --list at the bottom of the list will be the xinetd based services. Find the FTP daemon in there, and:

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-24 Thread keith smith
--- On Thu, 6/24/10, Dan Dubovik dand...@gmail.com wrote: From: Dan Dubovik dand...@gmail.com Subject: Re: Determin which FTP server is running and turn off non secure FTP To: Main PLUG discussion list plug-discuss@lists.plug.phoenix.az.us Date: Thursday, June 24, 2010, 11:51 AM rpm -qa | grep ftp ? also

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-24 Thread Tom Jones
at a loss. Any help much appreciated.   Keith Smith --- On Thu, 6/24/10, Dan Dubovik dand...@gmail.com wrote: From: Dan Dubovik dand...@gmail.com Subject: Re: Determin which FTP server is running and turn off non secure FTP To: Main PLUG discussion list plug-discuss

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-24 Thread keith smith
Jones tjones...@cox.net Subject: Re: Determin which FTP server is running and turn off non secure FTP To: Main PLUG discussion list plug-discuss@lists.plug.phoenix.az.us Date: Thursday, June 24, 2010, 1:51 PM Did you restart xinetd after moving the files? keith smith klsmith2...@yahoo.com wrote

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-23 Thread Dan Dubovik
You could check /etc/init.d for something that looks like an FTP server You could check: lsof -i :21 which should provide you with the pid / process that is listening on port 21. Once you have that, you should be able to kill off the process. Don't forget to chkconfig off the process, so it

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-23 Thread Daniel Stasinski
On Wed, Jun 23, 2010 at 3:50 PM, keith smith klsmith2...@yahoo.com wrote: I have a CentOS server that I am working on. Got SFTP working and now I want to turn off plain FTP. For Centos do both of these as root: chkconfig --del vsftpd service vsftpd stop The first line stops it from

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-23 Thread Michael Havens
our community is so knowledgeable you guys are great! On Wed, Jun 23, 2010 at 4:13 PM, Daniel Stasinski dan...@avenues.orgwrote: On Wed, Jun 23, 2010 at 3:50 PM, keith smith klsmith2...@yahoo.comwrote: I have a CentOS server that I am working on. Got SFTP working and now I want to

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-23 Thread keith smith
...@avenues.org wrote: From: Daniel Stasinski dan...@avenues.org Subject: Re: Determin which FTP server is running and turn off non secure FTP To: Main PLUG discussion list plug-discuss@lists.plug.phoenix.az.us Date: Wednesday, June 23, 2010, 4:13 PM On Wed, Jun 23, 2010 at 3:50 PM, keith smith

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-23 Thread Eric Shubert
keith smith wrote: I was looking around and found SERVICEDIR=/etc/init.d in the /sbin/service file. So I took a look in the /etc/init.d and found pure-ftpd. So I issued : /sbin/service pure-ftpd stop which returned : Stopping pure-config.pl: cat: /var/run/pure-ftpd.pid: No such file

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-23 Thread walter tocalini
Pure-FTPD runs in standalone in inetd. just commented out the ftp line in /etc/inetd.conf and will do the trick last resource remove it, WT On Wed, Jun 23, 2010 at 6:42 PM, Eric Shubert e...@shubes.net wrote: keith smith wrote: I was looking around and found SERVICEDIR=/etc/init.d in

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-23 Thread keith smith
However doesn't FTP run on 21 and SFTP on 22? I am able to FTP with either.  So both are working. Keith Smith --- On Wed, 6/23/10, Eric Shubert e...@shubes.net wrote: From: Eric Shubert e...@shubes.net Subject: Re: Determin which FTP server is running and turn off

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-23 Thread keith smith
I have a /etc/xinetd.conf which has not entry for FTP. Keith Smith --- On Wed, 6/23/10, walter tocalini curo...@gmail.com wrote: From: walter tocalini curo...@gmail.com Subject: Re: Determin which FTP server is running and turn off non secure FTP To: Main PLUG

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-23 Thread Dan Dubovik
FTP control channel is on port 21, data is on 20 (for active ftp). SFTP uses the SSH daemon, so runs on port 22. It has been my experience that the pure-ftpd init script is far from graceful, as Eric pointed out, the error that was given likely means that the service wasn't running. That, or it

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-23 Thread keith smith
! Keith Smith --- On Wed, 6/23/10, Dan Dubovik dand...@gmail.com wrote: From: Dan Dubovik dand...@gmail.com Subject: Re: Determin which FTP server is running and turn off non secure FTP To: Main PLUG discussion list plug-discuss@lists.plug.phoenix.az.us Date: Wednesday, June 23

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-23 Thread walter tocalini
Keith let asume that you use yum to install pure-ftp and you use---and you did not use nothing else to configure pure-ftp than chkconfig, -yum install pure-ftpd now after that you create the system startup links chkconfig --levels xx pure-ftpd on (xx =whatever level you use) or