- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: FTP Problem
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
Forums
Discussions
Discussions
Discussions
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
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
06-03-2002 05:54 AM
06-03-2002 05:54 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2002 06:00 AM
06-03-2002 06:00 AM
Re: FTP Problem
I don't think this has a direct relation with hard disk replacement ? Is this problem occurs only when you ftp to that specific disks ? Did you configured the disk after replacing ? Any error message in syslog.log ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2002 06:04 AM
06-03-2002 06:04 AM
Re: FTP Problem
You need to check the following :
check the .rhots file on the remote server. It should include the node name of the server from where you are loggging in.
Hi ....did you reinstall the OS once again ??? Then you will need to configure the ftp again.
ftpd is the daemon used for ftp and it will be invoked once you issue a ftp command by inetd daemon. Ftp should be configured in /etc/services and should be running on port 21 of the server.
You can try the following :
/sbin/init.d/inetd stop
/sbin/init.d/inetd start
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2002 06:51 AM
06-03-2002 06:51 AM
Re: FTP Problem
telnet to the machine and then try to ftp from the machine to the machine.
This will cut out networking.
If this works then it is something else.
grep ftpd /etc/inetd.conf
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l
# have one, please consult the tftpd(1M) manual entry for
tftp dgram udp wait root /usr/lbin/tftpd tftpd
Check syslog.log for errors
Steve steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2002 06:56 AM
06-03-2002 06:56 AM
Re: FTP Problem
The ftp daemon is run by inetd. Check your /etc/inetd.conf file and make sure the ftp daemon is mentioned as below,
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l
If you modify the inetd.conf file, let inetd reread the conf file using "inetd -c".
Hope this helps.
regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2002 07:27 AM
06-03-2002 07:27 AM
Re: FTP Problem
Port no 21 is used for ftp , check /etc/services to ensure that this is not used by any thing else , also check using lsof |grep 21 to ensure that the port is free
or you can kill the process owning it
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2002 11:56 AM
06-03-2002 11:56 AM
Re: FTP Problem
530 User root access denied.
Login failed.
BUT when I just type in a bunch of nothing as an ID it prompts for a password, but also fails
I am stumped. Any other suggestions?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2002 12:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2002 01:28 AM
06-04-2002 01:28 AM
Re: FTP Problem
The problem is with /etc/shells , just update /etc/shells with the all the shells users are using.
Nitin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2002 04:56 AM
06-04-2002 04:56 AM
Re: FTP Problem
NOTE: If root's shell is *NOT* /sbin/sh, you will have a *LOT* of problems later on. Some sysadmins see the sh process name and figure this is a Bourne shell (which is not). The /sbin/sh is the only shell which runs in single user mode. If you change root's shell to /usr/bin/ksh, then root will be crippled in single user mode with no shell.
Some sysadmins will replace /sbin/sh with /usr/bin/ksh so they can get the command recall to work. The POSIX shell (and ksh is also a POSIX shell) has this feature too but it needs an env value to enable it. Add this to /etc/profile:
export HISTFILE=$HOME/.sh_history
then login again and you'll be able to recall commands from the stack using ESC k. Note: /etc/profile must be read when you login--this may not be the case if you are using Xwindows. See other threads in the forums about profile problems with Xwindows.
Bill Hassell, sysadmin