Operating System - HP-UX
1754020 Members
7534 Online
108811 Solutions
New Discussion юеВ

Re: How to check daemon services on HP-UX

 
SOLVED
Go to solution
Muhamad Fiqri Zailani
Occasional Contributor

How to check daemon services on HP-UX

How to check daemon services on HP-UX
5 REPLIES 5
Bill Hassell
Honored Contributor
Solution

Re: How to check daemon services on HP-UX

What do you want check? Do you want to know if they are enabled? The file /etc/inetd.conf defines all the network daemons, but there are many other daemons too. You won't see all the active daemons running as many are scheduled when needed.


Bill Hassell, sysadmin
Kapil Jha
Honored Contributor

Re: How to check daemon services on HP-UX

#ps -ef|grep whatever

would be able to tell you if daemon is running or not.
I don think there is any command to check daemon status specifically.

BR,
Kapil+
I am in this small bowl, I wane see the real world......
madhuchakkaravarthy
Trusted Contributor

Re: How to check daemon services on HP-UX

hi

just use

ps -ef | grep [name] to see which daemon running.

check with /etc/rc.config.d to see the configuration details.


regards

MC
Ismail Azad
Esteemed Contributor

Re: How to check daemon services on HP-UX

Hi,

The control variable in the configuration files decides this. The subdirectories in the /sbin/init.d script and then an argument start/stop is used to enable or disable the service. You have assigned points to 0 of 7 responses!! Do assign points.

Regards
Read, read and read... Then read again until you read "between the lines".....
Muhamad Fiqri Zailani
Occasional Contributor

Re: How to check daemon services on HP-UX

hehehe, thanks2, i just want to check if the services is available or not, you'll help me alot, thanks guys :)