235

I launched my program in the foreground (a daemon program), and then I killed it with kill -9, but I get a zombie remaining and I m not able to kill it with kill -9. How to kill a zombie process?

If the zombie is a dead process (already killed), how I remove it from the output of ps aux?

root@OpenWrt:~# anyprogramd &
root@OpenWrt:~# ps aux | grep anyprogram
 1163 root      2552 S    anyprogramd
 1167 root      2552 S    anyprogramd
 1169 root      2552 S    anyprogramd
 1170 root      2552 S    anyprogramd
10101 root       944 S    grep anyprogram
root@OpenWrt:~# pidof anyprogramd
1170 1169 1167 1163
root@OpenWrt:~# kill -9 1170 1169 1167 1163
root@OpenWrt:~# ps aux |grep anyprogram
 1163 root         0 Z    [anyprogramd]
root@OpenWrt:~# kill -9 1163
root@OpenWrt:~# ps aux |grep anyprogram
 1163 root         0 Z    [anyprogramd]
1
  • 3
    What does ps -o ppid 1163 say? That is, who is 1163's parent? That is the process that must be terminated. Commented Jun 5, 2013 at 16:21

9 Answers 9

313

A zombie is already dead, so you cannot kill it. To clean up a zombie, it must be waited on by its parent, so killing the parent should work to eliminate the zombie. (After the parent dies, the zombie will be inherited by pid 1, which will wait on it and clear its entry in the process table.) If your daemon is spawning children that become zombies, you have a bug. Your daemon should notice when its children die and wait on them to determine their exit status.

An example of how you might send a signal to every process that is the parent of a zombie (note that this is extremely crude and might kill processes that you do not intend. I do not recommend using this sort of sledge hammer):

# Don't do this.  Incredibly risky sledge hammer!
kill $(ps -A -ostat,ppid | awk '/[zZ]/ && !a[$2]++ {print $2}')
5
  • 2
    If the zombie is a dead process (already killed), how I remove it from the output of ps aux?
    – MOHAMED
    Commented Jun 5, 2013 at 16:19
  • 248
    The zombie must be waited on by its parent. Find its parent and figure out why that parent is not paying attention to its children, then file a complaint with social services. ;) Commented Jun 5, 2013 at 16:22
  • 1
    I think using SIGTERM (the default for "kill") would be more appropriate, to give the processes about to be killed an opportunity to clean up before exiting.
    – jmng
    Commented Nov 23, 2015 at 14:26
  • 1
    Assuming you have process producing a lot of zombies it makes sense to 'uniq' the ids: kill $(ps -A -ostat,ppid | awk '/[zZ]/{print $2}' | sort -u)
    – ankon
    Commented Sep 26, 2017 at 16:30
  • 4
    usually, you can find the parent in the PPid row if you cat /proc/<pid>/status Commented Sep 4, 2018 at 11:22
72

You can clean up a zombie process by killing its parent process with the following command:

kill -HUP $(ps -A -ostat,ppid | awk '{/[zZ]/{ print $2 }')
11
  • 7
    This command clears the zombie from the process table, but it does not 'kill' the zombie. The zombie is already dead. Commented Jul 24, 2014 at 12:45
  • 10
    The grep is not necessary. ps ... | awk '/[zZ]/{print $2}' Commented Jul 24, 2014 at 12:48
  • 2
    AFAICS, this command doesn't kill the zombie, but sends SIGHUP to its parent process (presumably killing the parent if it doesn't handle SIGHUP and causing the zombie to be reparented to init, as described in the previous answer). So be careful with this command, it might kill something you weren't expecting to... Commented Sep 8, 2014 at 13:42
  • 1
    This didn't work for me . i did "kill -HUP processID" and the process is still there as a zombie Commented Nov 10, 2014 at 8:11
  • 1
    @WilliamPursell when you answer a question, please describe the consequence of using the command line and what it does explicitly because it does kill all the programs running on the computer.
    – Dalek
    Commented Aug 31, 2016 at 15:02
49

I tried:

ps aux | grep -w Z   # returns the zombies pid
ps o ppid {returned pid from previous command}   # returns the parent
kill -1 {the parent id from previous command}

this will work :)

5
  • im my case the zombie was creating via a start-up script and a program which was not clearly removed so I cleared it . Commented Oct 6, 2013 at 5:49
  • 1
    Worked for me. This will work in certain cases when the defunct process was spawned by anther killed process. Commented Jan 30, 2014 at 13:30
  • 2
    I checked what the parent process before killing it. And I just killed it using -9 instead of -1 : kill -9 {the parent id}
    – Ali
    Commented Aug 3, 2015 at 6:37
  • I also had to use -9 to kill mine instead of -1 Commented Jul 23, 2019 at 16:19
  • I have to kill it by restarting my mac, because the ppid is 1, can't kill it with sudo.
    – towry
    Commented Jul 31, 2023 at 2:02
36

Found it at http://www.linuxquestions.org/questions/suse-novell-60/howto-kill-defunct-processes-574612/

2) Here a great tip from another user (Thxs Bill Dandreta): Sometimes

kill -9 <pid>

will not kill a process. Run

ps -xal

the 4th field is the parent process, kill all of a zombie's parents and the zombie dies!

Example

4 0 18581 31706 17 0 2664 1236 wait S ? 0:00 sh -c /usr/bin/gcc -fomit-frame-pointer -O -mfpmat
4 0 18582 18581 17 0 2064 828 wait S ? 0:00 /usr/i686-pc-linux-gnu/gcc-bin/3.3.6/gcc -fomit-fr
4 0 18583 18582 21 0 6684 3100 - R ? 0:00 /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.6/cc1 -quie

18581, 18582, 18583 are zombies -

kill -9 18581 18582 18583

has no effect.

kill -9 31706

removes the zombies.

1
  • 5
    well that just killed init for me, and now I can't do anything and am forced to restart... the zombie process is Java, taking 3.4GB out of 4GB of RAM
    – Tcll
    Commented May 19, 2015 at 21:43
32

I tried

kill -9 $(ps -A -ostat,ppid | grep -e '[zZ]'| awk '{ print $2 }')

and it works for me.

1

Sometimes the parent ppid cannot be killed, hence kill the zombie pid

kill -9 $(ps -A -ostat,pid | awk '/[zZ]/{ print $2 }')
1

Combining a few answers here into an elegant approach where you confirm which process is gone zombie before killing it. Add the script to .bashrc/.zshrc and run the killZombie command.

killZombie() {
    pid=$(ps -A -ostat,ppid | awk '/[zZ]/ && !a[$2]++ {print $2}');
    if [ "$pid" = "" ]; then
        echo "No zombie processes found.";
    else
        cmd=$(ps -p $pid -o cmd | sed '1d');
        echo "Found zombie process PID: $pid";
        echo "$cmd";
        echo "Kill it? Return to continue… (ctrl+c to cancel)";
        read -r;
        sudo kill -9 $pid;
    fi
}
0

On mac non of the above commands/instructions worked. To remove zombie processes you can right click on docker-icon->troubleshot->clean/purge Data.

enter image description here

0

I do not dare to try above methods.

My solution is htop then detect which process have multiprocessing.spawn and kill -9 it.

1
  • If you dare read others answer, you would see that the accepted answer explain and give the exact kill command to run (with only one step)
    – Elikill58
    Commented Nov 4, 2021 at 10:50

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