Sponsored Content
Operating Systems HP-UX How to fetch all running services on HP-UX? Post 302939635 by MadeInGermany on Friday 27th of March 2015 09:51:44 AM
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:
 

9 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

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. 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

7. 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

8. 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

9. 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
serviceconf(8)						      System Manager's Manual						    serviceconf(8)

NAME
redhat-config-services - Service Configuration Utility SYNTAX
redhat-config-services DESCRIPTION
This is a graphical tool for enabling and disabling services (including xinetd services). Functionality to start, stop, and restart ser- vices is also included. OPTIONS
None FILES
/usr/bin/redhat-config-services /usr/share/serviceconf/* EXAMPLES
To run this program simply type: redhat-config-services LIMITATIONS
This utility currently execs chkconfig --add/--del <servicename> when enabling and disabling services. This means that it does not have the same default behaviour as ntsysv. SEE ALSO
chkconfig(8) ntsysv(8) BUGS
- Some services will not start or stop properly if started anywhere but the console (redhat-config-services will appear to hang in these instances). This is not a bug in redhat-config-services, but in the individual services. - Some services are incredibly hard to detect if they are running or not. Starting, stopping and restarting initscripts may give mixed results (ie. may fail if you are stopping a service that's already stopped, etc). This will be fixed; until then it's a bug. AUTHORS
Tim Powers <timp@redhat.com> Bill Nottingham <notting@redhat.com> Dan Walsh <dwalsh@redhat.com> Wed May 16 2001 serviceconf(8)
All times are GMT -4. The time now is 09:38 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy