How to fetch all running services on HP-UX?


 
Thread Tools Search this Thread
Operating Systems HP-UX How to fetch all running services on HP-UX?
# 1  
Old 03-27-2015
How to fetch all running services on HP-UX?

Hi All,

I have a requirement to get all the running services on few HP-UX boxes. In Linux systems I am able to do that successfully using: chkconfig --list. However I can't find anything equivalent in HP-UX. If anyone has any pointers on the same then please suggest.

Adyan
# 2  
Old 03-27-2015
HP-UX 11 does not register services anywhere.
Since this has been asked before, I have made a script that tries to emulate it:
Code:
#!/bin/sh
cd /sbin/init.d || exit
UNIX95=1 ps -e -o ppid= -o args= |
LC_ALL=C awk '
{
  if (NR==FNR) {
    if ($1==1 && !($0 in s)) {
      s[$0]
      sub(".*/","",$2); sub(".*/","",$3)
      out=out sep ((length($2)>4 || $3!~/^[a-zA-Z]{3}/) ? $2 : $3)
      sep="|"
    }
  } else {
    if (FILENAME!=pfilename && $0~"(^|^[^#]*[/ ,|])(" out ")([ ,|]|$)") {print pfilename=FILENAME}
  }
}
' - *

It looks for the currently running processes with ppid=1, greps the process names in /sbin/init.d/*, and returns the matching files in /sbin/init.d.

Last edited by MadeInGermany; 03-27-2015 at 11:11 AM.. Reason: excluded commented lines
These 2 Users Gave Thanks to MadeInGermany For This Post:
# 3  
Old 03-27-2015
Thank you sir, you have saved me time which matters the most these days Smilie
# 4  
Old 03-27-2015
I have refined my script, comments are now excluded from the search.
# 5  
Old 03-28-2015
Thx a lot MadeInGermany ..

Last edited by Adyan Faruqi; 03-28-2015 at 09:43 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. SuSE

Fetch port services from LDAP server

Hi, We have a ldap server configured with services (port) and want to know how to fetch that to the ldap clients: # cat /etc/nsswitch.conf|grep -i services services: files sss (neither sss nor ldap works) by doing "#getent services" I am getting only the result from /etc/services but I... (1 Reply)
Discussion started by: Sridaran
1 Replies

2. HP-UX

List running services, corresponding package name and status.

Hi, I am trying to list down list of running services, corresponding package name and status on HP-UX box. The output will be a CSV in a fashion:- Service Name, Package Name, Status. While working on Linux centos, I used chkconfig to do the same. Below was the snippet:- for i in `chkconfig... (3 Replies)
Discussion started by: Happy83
3 Replies

3. UNIX for Advanced & Expert Users

detecting the running services

I did search on the subject on services in linux and they do explain how to find what are the services that loaded when the linux boot. however I have not find how to detect what services run right now. I would like to now that and how to kill services. Thanks. (3 Replies)
Discussion started by: programAngel
3 Replies

4. SuSE

Which command can be used to show running services?

Hi Dear Guys: I want to get a list of running services. Is there any command having this functionality? (3 Replies)
Discussion started by: crest.boy
3 Replies

5. Programming

Fetch running applications list in Linux

Hi, I need to write a code which will fetch all the application activity on user computers including app name, time of day, duration, version, etc. Using this I need to know which applications are running currently in user's computers. How can it be done programmatically? I need to write the... (1 Reply)
Discussion started by: arunarora
1 Replies

6. Shell Programming and Scripting

How to fetch running/failed process

I am trying to fetch failed process but while doing that unable to do so. like; (1)ps -ef | grep snmpCollect o/p is coming like - root 12423 4393 1 19:44:06 pts/0 0:00 grep snmpCollect (2)ps -ef | grep sttps o/p- root 15517 4393 0 19:53:24 pts/0 0:00 grep sttps... (6 Replies)
Discussion started by: kumarabhi84
6 Replies

7. UNIX for Dummies Questions & Answers

Running services, how to disable some?

Hello all happy people! :) Iam trying to figure out how to disable running services, and witch i can disable. Iam running ssh,apache,ftp and identd. Here is an output from nmap: 21/tcp open ftp Solaris ftpd 22/tcp open ssh SunSSH 1.1 (protocol 2.0) 23/tcp ... (2 Replies)
Discussion started by: empty
2 Replies

8. UNIX for Dummies Questions & Answers

List services running in UNIX

We have lost our Sys Admin and with the DST changes.. i need to make sure all services are re-started on a SUN server running SUNOS 5.9 How can i list what is running and make sure they are running after the DST patches are applied? (2 Replies)
Discussion started by: JanSP
2 Replies

9. UNIX for Dummies Questions & Answers

Looking for administration tool to check if services are running

Hi! We are having problems with our unix servers (SunOS 5.9) that services for some of our applications are continuously going down. (this is more due to the applications installed than the UNIX OS). What I am looking for is some kind of administrative tool where I can set what service to scan... (1 Reply)
Discussion started by: erinor
1 Replies
Login or Register to Ask a Question