Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
I were expecting a knife pun. – Cheery Dec 24 '08 at 18:59
10  
@Brian: No, they just go to the orphanage. – Jeff Dec 24 '08 at 19:05
16  
Well technically they become Zombies... That scares me and they need to go! – Adam Peck Dec 24 '08 at 19:06
7  
Do not do this on Christmas, please. – vmarquez Dec 24 '08 at 19:15
2  
Sometimes those lingering zombies are responsible for some scary activity. – User1 Jan 7 '11 at 22:03
show 2 more comments

17 Answers

up vote 79 down vote accepted

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:

 ps x -o  "%p %r %y %x %c "

If it is a process group you want to kill, just use the kill(1) command but instead of giving it a process number, give it the negation of the group number. For example to kill every process in group 5112, use kill -TERM -5112.

share|improve this answer
1  
kill -74313 -bash: kill: 74313: invalid signal specification If i add the kill -15 -GPID it worked perfectly. – Adam Peck Dec 24 '08 at 20:17
11  
As usual with almost any command, if you want a normal argument that starts with a - to not be interpreted as a switch, precede it with --: kill -- -GPID – ysth Dec 24 '08 at 21:47
4  
pgrep can offer an easier way to find the process group ID. For example, to kill my-script.sh's process group, run kill -TERM -$(pgrep -o my-script.sh). – Josh Kelley Aug 25 '11 at 13:04
3  
Better look at stackoverflow.com/questions/392022/… its by far a more elegant solution and if you need to list the pids of the children then use: ps -o pid --no-headers --ppid $PARENT_PID – Jeznet Sep 15 '11 at 11:19
And if you modify the format slightly and sort, you get to see all processes nicely grouped and beginning with (potentially) the group parent in each group: ps x -o "%r %p %y %x %c" | sort -nk1,2 – haridsv Dec 3 '12 at 12:18
show 1 more comment
pkill -TERM -P 27888

where 27888 is parent's PID.

Or more robust:

CPIDS=$(pgrep -P 27888); (sleep 33 && kill -KILL $CPIDS &); kill -TERM $CPIDS

which schedule killing 33 second later and politely ask processes to terminate.

share|improve this answer
Simple and genius. Thanks. – Jeznet Sep 15 '11 at 11:08
2  
In my quick test, pgrep only reported the immediate children, so this may not kill the entire hierarchy. – haridsv Dec 3 '12 at 12:24
I agree with @haridsv: pkill -P sends the signal to the child only => the grandchild do not receive the signal => Therefore I have wroten another answer to explain that. Cheers ;-) – olibre Feb 28 at 16:09

To kill a process tree recursively, use killtree.sh:

#!/bin/bash

killtree() {
    local _pid=$1
    local _sig=${2-TERM}
    kill -stop ${_pid} # needed to stop quickly forking parent from producing child between child killing and parent killing
    for _child in $(ps -o pid --no-headers --ppid ${_pid}); do
        killtree ${_child} ${_sig}
    done
    kill -${_sig} ${_pid}
}

if [ $# -eq 0 -o $# -gt 2 ]; then
    echo "Usage: $(basename $0) <pid> [signal]"
    exit 1
fi

killtree $@
share|improve this answer
Wish I could give this more upvotes. GREAT script! – Jay Taylor Jul 7 '11 at 21:39
1  
The -- arguments to ps don't work on OS X. To make it work there replace the ps command by: ps ax -o "pid= ppid=" | grep -E "${_regex}" | sed -E "s/${_regex}/\1/g where _regex is defined before the for loop: local _regex="[ ]*([0-9]+)[ ]+${_pid}" – artur Oct 2 '11 at 22:21
1  
Stopped processes don't get killed with SIGTERM. See my answer – x-yuri Nov 20 '12 at 20:32
-1 uses #!/bin/bash instead of #!/usr/bin/env bash (or better yet POSIX only constructs and /bin/sh) – Good Person Feb 28 at 16:33

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.

for child in $(ps -o pid -ax --ppid $PPID) do ....... done

share|improve this answer
This doesn't work for me unless I take out the -ax, for some reason (Centos5). Otherwise this is great! – xitrium Aug 5 '10 at 9:03

if you know pass the pid of the parent process, here's a shell script that should work:

for child in $(ps -o pid,ppid -ax | \
   awk "{ if ( \$2 == $pid ) { print \$1 }}")
do
  echo "Killing child process $child because ppid = $pid"
  kill $child
done
share|improve this answer
Some versions of ps will throw a warning if you use "-ax" instead of "ax". Thus: for child in $(ps -o pid,ppid ax | \ awk "{ if ( \$2 == $pid ) { print \$1 }}") – Cory R. King May 20 at 20:45

I use a little bit modified version of a method described here: http://stackoverflow.com/a/5311362/563175

So it looks like that:

kill `pstree -p 24901 | sed 's/(/\n(/g' | grep '(' | sed 's/(\(.*\)).*/\1/' | tr "\n" " "`

where 24901 is parent's PID.

It looks pretty ugly but does it's job perfectly.

share|improve this answer

UPD. Actually I doubt if trap exit TERM is a good idea. It was the solution that somehow worked for some tasks.

Modified version of zhigang's answer:

#!/usr/bin/env bash
set -eu

killtree() {
    local pid
    for pid; do
        kill -stop $pid
        local cpid
        for cpid in $(pgrep -P $pid); do
            killtree $cpid
        done
        kill $pid                   # NOTE. SIGTERM doesn't kill stopped process
        kill -cont $pid             # So I added sending SIGCONT
    done
}

(trap exit TERM; sleep 100) 2>/dev/null &
    # handling SIGTERM, so that bash wouldn't complain about child being killed
    # redirecting stderr to prevent seeing child's complains about sleep being killed
self=$$
children=$(pgrep -P $self)
children=$(echo $children $(pgrep -P $children))
killtree $(pgrep -P $self)
pgrep -P $$ || true
ps -p ${children/ /,} -o pid= || true

But I'd prefer not to stop/continue processes to be killed, if appropriate. pkill -P $pid may suffice at least for some situations.

share|improve this answer
kill -- -$(ps opgid= $PID)   # send signal TERM (kill -15) to the whole tree

$PID is the Process ID, it can be any Process ID of the tree, not only the Process Parent ID. Note ps opgid= $PID is equivalent of ps -o pgid --no-headers $PID (pgid is also equivalent of pgrp).

Explanation

PGID=$(ps opgid= "$PID")   # get the Process-Group-ID from a Process-ID
kill -- -"$PGID"           # send signal to all child, grandchild...

sending more signals to be sure:

PGID=$(ps opgid= "$PID")
kill -TERM -"$PGID"  # kill -15
kill -QUIT -"$PGID"  # same signal as [CRTL+C] from keyboard
kill -CONT -"$PGID"  # the above signals do not kill stopped processes
sleep 2              # wait terminate process (more time if required)
kill -KILL -"$PGID"  # kill -9 if it does not intercept signals (or buggy)

Example

> cat run-many-processes.sh
#!/bin/sh
echo "ProcessID=$$ begins ($0)"
./child.sh background &
./child.sh foreground
echo "ProcessID=$$ ends ($0)"

> cat child.sh
#!/bin/sh
echo "ProcessID=$$ begins ($0)"
./grandchild.sh background &
./grandchild.sh foreground
echo "ProcessID=$$ ends ($0)"

> cat grandchild.sh
#!/bin/sh
echo "ProcessID=$$ begins ($0)"
sleep 9999
echo "ProcessID=$$ ends ($0)"

Run the process tree in background using '&'

> ./run-many-processes.sh &    
ProcessID=28957 begins (./run-many-processes.sh)
ProcessID=28959 begins (./child.sh)
ProcessID=28958 begins (./child.sh)
ProcessID=28960 begins (./grandchild.sh)
ProcessID=28961 begins (./grandchild.sh)
ProcessID=28962 begins (./grandchild.sh)
ProcessID=28963 begins (./grandchild.sh)

> PID=$!                    # get the Parent Process ID
> PGID=$(ps opgid= "$PID")  # get the Process Group ID

> ps fj
 PPID   PID  PGID   SID TTY      TPGID STAT   UID   TIME COMMAND
28348 28349 28349 28349 pts/3    28969 Ss   33021   0:00 -bash
28349 28957 28957 28349 pts/3    28969 S    33021   0:00  \_ /bin/sh ./run-many-processes.sh
28957 28958 28957 28349 pts/3    28969 S    33021   0:00  |   \_ /bin/sh ./child.sh background
28958 28961 28957 28349 pts/3    28969 S    33021   0:00  |   |   \_ /bin/sh ./grandchild.sh background
28961 28965 28957 28349 pts/3    28969 S    33021   0:00  |   |   |   \_ sleep 9999
28958 28963 28957 28349 pts/3    28969 S    33021   0:00  |   |   \_ /bin/sh ./grandchild.sh foreground
28963 28967 28957 28349 pts/3    28969 S    33021   0:00  |   |       \_ sleep 9999
28957 28959 28957 28349 pts/3    28969 S    33021   0:00  |   \_ /bin/sh ./child.sh foreground
28959 28960 28957 28349 pts/3    28969 S    33021   0:00  |       \_ /bin/sh ./grandchild.sh background
28960 28964 28957 28349 pts/3    28969 S    33021   0:00  |       |   \_ sleep 9999
28959 28962 28957 28349 pts/3    28969 S    33021   0:00  |       \_ /bin/sh ./grandchild.sh foreground
28962 28966 28957 28349 pts/3    28969 S    33021   0:00  |           \_ sleep 9999
28349 28969 28969 28349 pts/3    28969 R+   33021   0:00  \_ ps fj

The command pkill -P $PID does not kill the grandchild:

> pkill -P "$PID"
./run-many-processes.sh: line 4: 28958 Terminated              ./child.sh background
./run-many-processes.sh: line 4: 28959 Terminated              ./child.sh foreground
ProcessID=28957 ends (./run-many-processes.sh)
[1]+  Done                    ./run-many-processes.sh

> ps fj
 PPID   PID  PGID   SID TTY      TPGID STAT   UID   TIME COMMAND
28348 28349 28349 28349 pts/3    28987 Ss   33021   0:00 -bash
28349 28987 28987 28349 pts/3    28987 R+   33021   0:00  \_ ps fj
    1 28963 28957 28349 pts/3    28987 S    33021   0:00 /bin/sh ./grandchild.sh foreground
28963 28967 28957 28349 pts/3    28987 S    33021   0:00  \_ sleep 9999
    1 28962 28957 28349 pts/3    28987 S    33021   0:00 /bin/sh ./grandchild.sh foreground
28962 28966 28957 28349 pts/3    28987 S    33021   0:00  \_ sleep 9999
    1 28961 28957 28349 pts/3    28987 S    33021   0:00 /bin/sh ./grandchild.sh background
28961 28965 28957 28349 pts/3    28987 S    33021   0:00  \_ sleep 9999
    1 28960 28957 28349 pts/3    28987 S    33021   0:00 /bin/sh ./grandchild.sh background
28960 28964 28957 28349 pts/3    28987 S    33021   0:00  \_ sleep 9999

The command kill -- -$PGID kill all processes including the grandchild.

> kill --    -"$PGID"  # default signal is TERM (kill -15)
> kill -CONT -"$PGID"  # awake stopped processes
> kill -KILL -"$PGID"  # kill -9 to be sure

> ps fj
 PPID   PID  PGID   SID TTY      TPGID STAT   UID   TIME COMMAND
28348 28349 28349 28349 pts/3    29039 Ss   33021   0:00 -bash
28349 29039 29039 28349 pts/3    29039 R+   33021   0:00  \_ ps fj

Conclusion

I notice in this example PID and PGID are equal (28957).
This is why I originally thought kill -- -$PID was enough. But in the case the process is spawn within a Makefile the Process ID is different from the Group ID.
I think kill -- -$(ps opgid= $PID) is the best simple trick to kill a whole process tree. Any suggestion?

share|improve this answer
1  
+1 great detail – Tom Mar 31 at 3:27

To add to Norman Ramsey's answer, it may be worth looking at at setsid if you want to create a process group.
http://pubs.opengroup.org/onlinepubs/009695399/functions/setsid.html

The setsid() function shall create a new session, if the calling process is not a process group leader. Upon return the calling process shall be the session leader of this new session, shall be the process group leader of a new process group, and shall have no controlling terminal. The process group ID of the calling process shall be set equal to the process ID of the calling process. The calling process shall be the only process in the new process group and the only process in the new session.

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.

share|improve this answer
Actually this is a great idea and works very well. I'm using it in cases where I can put processes in the same process group (or they're allready in the same group). – sickill Jan 11 at 0:32

Inspired by ysth’s comment

kill -- -PGID

instead of giving it a process number, give it the negation of the group number. As usual with almost any command, if you want a normal argument that starts with a - to not be interpreted as a switch, precede it with --

share|improve this answer
Oops, I have just realized I have given the same answer as you => +1. But moreover I explain how to simply get PGID from PID. What do you think? Cheers – olibre Mar 1 at 9:12

This is my version of killing all the child processes using bash script. It does not use recursion and depends on pgrep command.

Use

killtree.sh PID SIGNAL

Contents of killtrees.sh

#!/bin/bash
PID=$1
if [ -z $PID ];
then
    echo "No pid specified"
fi

PPLIST=$PID
CHILD_LIST=`pgrep -P $PPLIST -d,`

while [ ! -z "$CHILD_LIST" ]
do
    PPLIST="$PPLIST,$CHILD_LIST"
    CHILD_LIST=`pgrep -P $CHILD_LIST -d,`
done

SIGNAL=$2

if [ -z $SIGNAL ]
then
    SIGNAL="TERM"
fi
#do substring from comma to space
kill -$SIGNAL ${PPLIST//,/ }
share|improve this answer

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


#!/bin/bash
if test $# -lt 1 ; then
    echo >&2 "usage: kiltree pid (sig)"
fi ;

_pid=$1
_sig=${2:-TERM}
_children=$(ps j | grep "^[ ]*${_pid} " | cut -c 7-11) ;
echo >&2 kill -${_sig} ${_pid}
kill -${_sig} ${_pid}
for _child in ${_children}; do
    killtree ${_child} ${_sig}
done
share|improve this answer

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?

share|improve this answer
I didn't find any of their answers conclusive. I checked the CPAN module and it didn't seem to do what was described and I can't use the 'kill' command with a GPID. – Adam Peck Dec 24 '08 at 19:05
Oh I see. I would retract my answer, except that it might be a useful explanation in case someone else comes along and thinks your question is a dupe. – Adam Bellaire Dec 24 '08 at 19:14

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:

# kill my group's subprocesses:          killGroup
# kill also myself:                      killGroup -x
# kill another group's subprocesses:     killGroup N  
# kill that group all:                   killGroup -x N
# N: PID of the main process (= process group ID).

function killGroup () {
    local prid mainpid
    case $1 in
        -x) [ -n "$2" ] && kill -9 -$2 || kill -9 -$$ ;;
        "") mainpid=$$ ;;
         *) mainpid=$1 ;;
    esac
    prid=$(ps ax -o pid,pgid | grep $mainpid)
    prid=${prid//$mainpid/}
    kill -9 $prid 2>/dev/null
    return
}

Cheers.

share|improve this answer

if you have pstree and perl on your system, you can try this:

perl -e 'kill 9, (`pstree -p PID` =~ m/\((\d+)\)/sg)'
share|improve this answer

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.

kill $(ps -o pid= -s $(ps -o sess --no-heading --pid 21709))

If you don't know the pid you can still nest more

kill $(ps -o pid= -s $(ps -o sess --no-heading --pid $(pgrep rsync )))
share|improve this answer
ps -o pid= --ppid $PPID | xargs kill -9 
share|improve this answer
5  
Don't kill -9, really. – Nathan Kidd Feb 4 '11 at 22:36
1  
Sometimes kill -15 won't help. – Fedir Dec 12 '11 at 13:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.