Monitoring Processes with Kill
September 23rd, 2008 by Rich Lundeen in
If you have a process ID but aren't sure whether it's valid, you can use the most unlikely of candidates
to test it: the kill command. If you don't see any reference to this on the kill(1) man page, check the info
pages. The man/info page states that signal 0 is special and that the exit code from kill tells whether a
signal could be sent to the specified process (or processes).
So kill -0 will not terminate the process, and the return status can be used to determine whether
a process is running. For example:
$ echo $$ # show our process id 12833 $ /bin/bash # create new process $ echo $$ # show new process id 12902 $ kill -0 12902 $ echo $? # exists, exit code is 0 0 $ exit # return to previous shell $ kill -0 12902 bash: kill: (12902) - No such process $ echo $? # doesn't exist, exit code is 1 1
Many UNIX dæmons store their process IDs in a file in /var/run when they are started. Using kill
-0 to test the pid is a lot easier than parsing ps output. For example, to test whether cron is
running, do the following:
# kill -0 $(cat /var/run/cron.pid) # echo $? 0
__________________________
Special Magazine Offer -- Free Gift with Subscription
Receive a free digital copy of Linux Journal's System Administration Special Edition as well as instant online access to current and past issues. CLICK HERE for offer
Linux Journal: delivering readers the advice and inspiration they need to get the most out of their Linux systems since 1994.
Subscribe now!
The Latest
Newsletter
Tech Tip Videos
- Nov-19-09
- Nov-04-09
Recently Popular
From the Magazine
December 2009, #188
If last month's Infrastrucuture issue was too "big" for you then try on this month's Embedded issue. Find out how to use Player for programming mobile robots, build a humidity controller for your root cellar, find out how to reduce the boot time of your embedded system, and if you're new to embedded systems find out the basics that go into one. You can also read about the Beagle Board, the Mesh Potato and a spate of other interestingly named items. And along with our regular columns don't miss our new monthly column: Economy Size Geek.
Delicious
Digg
StumbleUpon
Reddit
Facebook








ps "parsing"
On September 24th, 2008 Anonymous says:
I think you should parse the ps output because in theory it is possible that your process died and (another) new process got its PID. It just depends on how often you check if the PID is still running and how often new processes get spawned on your system.
But by giving ps the right parameters it does all the work for you:
$ ps hp $(cat /var/run/crond.pid) o comm
cron
This way you can confirm that the given process name is indeed the program you are monitoring.
Post new comment