Home » Infrastructure » Unix » Daemon Process
Daemon Process [message #189084] Wed, 23 August 2006 02:45 Go to next message
jai_162
Messages: 21
Registered: July 2006
Junior Member
How to find the daemon processes running in the application?
Re: Daemon Process [message #189171 is a reply to message #189084] Wed, 23 August 2006 08:41 Go to previous messageGo to next message
Frank Naude
Messages: 4579
Registered: April 1998
Senior Member
Deamon processes are normal processes with PPID set to 1.

Use the ps command to see what processes are running. For details, do a "man ps".

$ ps -ef | awk '{if ($3 == 1) print}';
Re: Daemon Process [message #190688 is a reply to message #189171] Thu, 31 August 2006 15:00 Go to previous messageGo to next message
andrew again
Messages: 2577
Registered: March 2000
Senior Member
To see process trees in Solaris see "ptree". To see the same on HP-UX, do a google on ptree.sh rptree.sh
Re: Daemon Process [message #199666 is a reply to message #189084] Wed, 25 October 2006 12:26 Go to previous message
gururajster
Messages: 26
Registered: October 2006
Location: bangalorre
Junior Member

HI,

This is gururaj.

you can check the daemon process running by using the following command in unix prompt


ps -ef|grep daemon*


Previous Topic: calendar script
Next Topic: how to manage errors in unix's scripts for the oracle's connections and procedures calls
Goto Forum:
  


Current Time: Thu Mar 28 07:34:26 CDT 2024