List running services, corresponding package name and status.


 
Thread Tools Search this Thread
Operating Systems HP-UX List running services, corresponding package name and status.
# 1  
Old 12-31-2014
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:-

Code:
for i in `chkconfig --list | awk '{ print $1}'`; do

status=`/sbin/service $i status`
packagename=`rpm -qf /etc/init.d/$i`

if echo "$status" |grep -q running; then
echo $i","$packagename",""Running" > "$HOME/MyLog/running_services_${ip}_${tdaydatefile}.csv"

else
if echo "$status" |grep -q stopped; then
echo $i","$packagename",""Stopped" > "$HOME/MyLog/running_services_${ip}_${tdaydatefile}.csv"
fi

fi
done

Now, chkconfig doesn't exist on HP-UX. Is there a way I can retrieve the similar output on HP-UX? Any help related to this is appreciated.

Thanks.

Last edited by Scrutinizer; 12-31-2014 at 05:24 AM.. Reason: code tags
# 2  
Old 12-31-2014
Hi Happy83,

Welcome to forums, kindly use code tags as per forum rules for commands/codes/inputs while posting. For your request:

HPUX does not have a similar utility.You would need to create your own init scripts. You can start with a copy of 1 of the init scripts and then make the necessary changes. Then make the additions to them. You can use /sbin/init.d/template file to create your own init scripts.


NOTE: you can go though the forum rules in following link too.
https://www.unix.com/misc.php?do=cfrules


Thanks,
R. Singh
# 3  
Old 03-27-2015
Here is a chkconfig emulation for HP-UX.
Installed software packages are listed with
Code:
swlist

More swlist options are explained in
Code:
man swlist

# 4  
Old 03-27-2015
As an aside, your chkconfig script will not work on modern systemd-based OSes such as RHEL7
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Boot Error - NIS services fails with Status 96

My system suddenly crash and when it rebooted there was an error: /dev/rdsk/c1t0d0s3 is logging svc.startd: svc:/network/nis/client:default: Method "/method/yp" failed with status 96. The system completes booting however when I log in a user account / directory is not longer... (1 Reply)
Discussion started by: NeedSolarisHelp
1 Replies

2. HP-UX

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 (4 Replies)
Discussion started by: Adyan Faruqi
4 Replies

3. AIX

List running services, Package name and status on AIX.

Hi, How can I list running services, corresponding package name and status on the AIX host? On Linux (Centos), I use the below code snippet:- for i in `chkconfig --list | awk '{ print $1}'`; do status=`/sbin/service $i status` packagename=`rpm -qf /etc/init.d/$i` done Is there... (2 Replies)
Discussion started by: Vipin Batra
2 Replies

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

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

6. Shell Programming and Scripting

Colloring Status of process or package

Hi there all again, I am building a menu script for viewing packages and deamons and printers and all.. I know how to collor text to red or green. But I get my results from status and put it in a array. How can I change a result that is standing in a array to build collor around it. For... (6 Replies)
Discussion started by: draco
6 Replies

7. AIX

how to check status of various services and port?

How can i check which service is activated on my AIX Box? how one can check particular port is open or not (like ftp/telnet port)? I dont have admin rights (1 Reply)
Discussion started by: ashish4422
1 Replies

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

9. Solaris

services status finding ...???

Could we find out the all services status in salaries 9 operating system....??? (2 Replies)
Discussion started by: udayn
2 Replies

10. 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
Login or Register to Ask a Question