I basically want to kill a whole process tree. What is the best way to do this using any common scripting languages. I am looking for a simple solution.
|
|
You don't say if the tree you want to kill is a single process group. (This is often the case if the tree is the result of forking from a server start or a shell command line.) You can discover process groups using GNU ps as follows:
If it is a process group you want to kill, just use the |
|||||||||||||||||||
|
where 27888 is parent's PID. Or more robust:
which schedule killing 33 second later and politely ask processes to terminate. |
|||||||||
|
|
To kill a process tree recursively, use killtree.sh:
|
|||||||||||||
|
|
brad's answer is what I'd recomment too, except that you can do away with awk altogether if you use the --ppid option to ps.
|
|||
|
|
if you know pass the pid of the parent process, here's a shell script that should work:
|
|||
|
|
I use a little bit modified version of a method described here: http://stackoverflow.com/a/5311362/563175 So it looks like that:
where 24901 is parent's PID. It looks pretty ugly but does it's job perfectly. |
||||
|
|
|
UPD. Actually I doubt if Modified version of zhigang's answer:
But I'd prefer not to stop/continue processes to be killed, if appropriate. |
||||
|
|
Explanation
sending more signals to be sure:
Example
Run the process tree in background using '&'
The command
The command
ConclusionI notice in this example |
|||||
|
|
To add to Norman Ramsey's answer, it may be worth looking at at setsid if you want to create a process group.
Which I take to mean that you can create a group from the starting process. I used this in php in order to be able to kill a whole process tree after starting it. This may be a bad idea. I'd be interested in comments. |
|||
|
|
Inspired by ysth’s comment
|
||||
|
|
This is my version of killing all the child processes using bash script. It does not use recursion and depends on pgrep command. Use
Contents of killtrees.sh
|
|||
|
|
|
It is probably better to kill the parent before the children; otherwise the parent may likely spawn new children again before he is killed himself. These will survive the killing. My version of ps is different from that above; maybe too old, therefore the strange grepping... To use a shell script instead of a shell function has many advantages... However, it is basically zhigangs idea
|
||||
|
|
|
Since you say you can use any common scripting languages, you could take a look at this question: How can I kill a whole process tree with Perl? |
|||||
|
|
Thanks for your wisdom, folks. My script was leaving some child processes on exit and the negation tip made things easier. I wrote this function to be used in other scripts if necessary:
Cheers. |
|||
|
|
|
if you have pstree and perl on your system, you can try this:
|
|||
|
|
|
If you know the pid of the thing you want to kill, you can usually go from the session id, and everything in the same session. I'd double check, but I used this for scripts starting rsyncs in loops that I want to die, and not start another (because of the loop) as it would if I'd just killall'd rsync.
If you don't know the pid you can still nest more
|
|||
|
|
|
|||||||||
|
