- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Show services running
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
07-20-2001 12:00 PM
07-20-2001 12:00 PM
Show services running
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2001 12:06 PM
07-20-2001 12:06 PM
Re: Show services running
It can't be as simple as ps -ef?
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2001 12:08 PM
07-20-2001 12:08 PM
Re: Show services running
Maybe also rpcinfo -p?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2001 12:44 PM
07-20-2001 12:44 PM
Re: Show services running
ps -aef | grep the process name
or cat /etc/services | more and see the lines which are unhashed .
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2001 07:43 PM
07-21-2001 07:43 PM
Re: Show services running
we can only guess what you ask for, but I think you
want to see the "network services running", and then
the command would be
netstat -a | more
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2001 03:02 AM
07-22-2001 03:02 AM
Re: Show services running
1. use the command ps -ef | grep -i name of process to get the list of process in the system .
2. you can check the /etc/services to check all the services and the number of port for them .
3. use rpcinfo to see all the service for nfs .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2001 05:11 AM
07-23-2001 05:11 AM
Re: Show services running
I agree with the people above: what do you want to see.
* Processes: use ps
* RPC (Remote Procedure Call) services: use rpcinfo
* Internet services: check /etc/inetd.conf
* you can also check the network status of daemons, services and processes by using netstat.
Note: /etc/services is not a list of active services but it is a database with the official service names and the corresponding protocol and port. (this means that not all services are even available on your system or for HPUX for that matter).