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
02-08-2001 08:05 AM
02-08-2001 08:05 AM
I installed patch PHNE_21936 and since then I noticed when running the top command I see the ftpd:
Does anyone know why it appears with a colon at the end?
TIA
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2001 08:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2001 08:26 AM
02-08-2001 08:26 AM
Re: ftpd
ftpd isn't running by default. It is started by inetd as soon as there is a ftp request on port 21.
You should only see ftpd entries in your process list when you have established connexions, for example (from ps -ef):
root 21754 2100 0 17:21:35 ? 0:00 ftpd: dpro-1021.distri.be: hetzeld: IDLE
If one of your ftp connexion is using a lot of CPU and doesn't show the entry as here above in your process list, it could be hung and you'll have to kill it.
Best regards,
Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2001 09:56 AM
02-08-2001 09:56 AM
Re: ftpd
pts/2 11910 fran 158 20 296K 200K sleep 0:00 0.02 0.02 sh
? 13733 root 154 20 1732K 456K sleep 0:07 0.02 0.02 ftpd:
? 920 root 154 20 184K 300K sleep 0:03 0.02 0.02 inetd
? 1254 root 154 20 1012K 416K sleep 0:00 0.02 0.02 sendmail:
If you note the other process do not have a colon.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2001 10:05 AM
02-08-2001 10:05 AM
Re: ftpd
ps only display one word.
I explain :
do "ps -edf |grep sendmail"
you get something like :
root 902 ..... sendmail: accepting connections on port 25
with top, you will only see the first word : "sendmail:"
second example :
ps -edf |grep inet
get something :
root 846 ... /usr/sbin/inetd
top will write "inetd"
regards,
Patrice.