- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- ftp connection refused
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-05-2004 10:36 PM
тАО11-05-2004 10:36 PM
ftp connection refused
I am a relative new guy with red hat linux, i have to ftp some files from one 2.1 advanced server to another.
but i get connection refused all the time, i have looked at the ftpaccess and ftpusers file and as far as i can see they look standard i can rlogin in both directions with non issues.
but now i am under time presure and would apprecate some help.
regards
Andrew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-06-2004 08:13 AM
тАО11-06-2004 08:13 AM
Re: ftp connection refused
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-06-2004 05:07 PM
тАО11-06-2004 05:07 PM
Re: ftp connection refused
have you installed and started ftp server ?
rpm -qa | grep ftp
ps -ef | grep ftp
If ssh is running you don't need ftp, use scp:
upload: scp file user@remotebox:/dir
download: scp user@remotebox:/dir your_path
br Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2004 01:27 AM
тАО11-07-2004 01:27 AM
Re: ftp connection refused
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-08-2004 12:45 AM
тАО11-08-2004 12:45 AM
Re: ftp connection refused
By default the ftp rpm does not get loaded, you can download from redhat site the wu-ftpd rpm and install it. Once you install it run setup and enable wu-ftpd,after you have done this do a kill -HUP on the inetd process after this ftp will start working.
Rgds
HGN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-17-2004 06:46 AM
тАО11-17-2004 06:46 AM
Re: ftp connection refused
I experienced troubles, for the Kerberos ftp package was installed (which is more sticky to configure) instead of the regular one.
Things became immediatly easier with the regular (which is probably less secure)
How about your machine ?
Good luck
Fodil.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-17-2004 07:01 AM
тАО11-17-2004 07:01 AM
Re: ftp connection refused
You may have a look on :
/etc/hosts
/etc/sysconfig/network
/etc/sysconfig/network-scripts/ifcfg-eth0
(where eth0 is your machine interface's name)
To restart daemons let have a look on :
/etc/rc5.d/S10network reload
/etc/rc5.d/S56xinetd restart (***)
/etc/rc.d/inti.d/network restart
Regards,
Fodil.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-17-2004 07:28 AM
тАО11-17-2004 07:28 AM
Re: ftp connection refused
To manage services let's execute :
ntsysv
Fodil.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-17-2004 07:54 AM
тАО11-17-2004 07:54 AM
Re: ftp connection refused
By default ftp is not on the OS, to get ftp working you need to do the following
Install wuftpd rpm which can be downloaded from redhat site
After installing using rpm -ivh wuftp*.rpm
then run setup go to services and select wuftpd
Save and exit
do a ps -ef|grep inetd
do a kill -HUP on inetd pid and after that ftp will satrt working
No reboot required for the whole process.
Hope this helps
Regards
Gopi