9

有没有办法杀死僵尸进程?我试过调用exit杀死进程,甚至向进程发送SIGINT信号,但似乎没有什么能杀死它。我正在为 Linux 编程。

4

6 回答 6

11

僵尸进程已经死了,所以它们不能被杀死,只能被收割,这必须由它们的父进程通过wait*(). 这通常被称为child reaper成语,在信号处理程序中用于SIGCHLD

while (wait*(... WNOHANG ...)) {
    ...
}
于 2011-06-13T20:13:57.970 回答
4

这是我创建的用于杀死所有僵尸进程的脚本。它使用 GDB 调试器附加到父进程并发送一个 waitpid 来杀死僵尸进程。这将使父母活着,只会杀死僵尸。

需要安装 GDB 调试器,并且您需要以附加到进程的权限登录。这已经在 Centos 6.3 上进行了测试。

#!/bin/bash
##################################################################
# Script: Zombie Slayer
# Author: Mitch Milner
# Date:   03/13/2013 ---> A good day to slay zombies
#
# Requirements: yum install gdb
#               permissions to attach to the parent process
#
# This script works by using a debugger to
# attach to the parent process and then issuing
# a waitpid to the dead zombie. This will not kill
# the living parent process.
##################################################################

clear
# Wait for user input to proceed, give user a chance to cancel script
echo "***********************************************************"
echo -e "This script will terminate all zombie process."
echo -e "Press [ENTER] to continue or [CTRL] + C to cancel:"
echo "***********************************************************"
read cmd_string
echo -e "\n"

# initialize variables
intcount=0
lastparentid=0

# remove old gdb command file
rm -f /tmp/zombie_slayer.txt

# create the gdb command file
echo "***********************************************************"
echo "Creating command file..."
echo "***********************************************************"
ps -e -o ppid,pid,stat,command | grep Z | sort | while read LINE; do
  intcount=$((intcount+1))
  parentid=`echo $LINE | awk '{print $1}'`
  zombieid=`echo $LINE | awk '{print $2}'`
  verifyzombie=`echo $LINE | awk '{print $3}'`

  # make sure this is a zombie file and we are not getting a Z from
  # the command field of the ps -e -o ppid,pid,stat,command
  if [ "$verifyzombie" == "Z" ]
  then
    if [ "$parentid" != "$lastparentid" ]
    then
      if [ "$lastparentid" != "0" ]
      then
        echo "detach" >> /tmp/zombie_slayer.txt
      fi
    echo "attach $parentid" >> /tmp/zombie_slayer.txt
    fi
    echo "call waitpid ($zombieid,0,0)" >> /tmp/zombie_slayer.txt
    echo "Logging: Parent: $parentid  Zombie: $zombieid"
    lastparentid=$parentid
  fi
done
if [ "$lastparentid" != "0" ]
then
  echo "detach" >> /tmp/zombie_slayer.txt
fi

# Slay the zombies with gdb and the created command file
echo -e "\n\n"
echo "***********************************************************"
echo "Slaying zombie processes..."
echo "***********************************************************"
gdb -batch -x /tmp/zombie_slayer.txt
echo -e "\n\n"
echo "***********************************************************"
echo "Script complete."
echo "***********************************************************"

享受。

于 2013-03-14T20:55:56.323 回答
2

僵尸进程是其父进程尚未等待的进程 ID(以及相关的终止状态和资源使用信息)。消除它的唯一方法是让其父级等待它(有时这可以通过SIGCHLD手动发送给父级来实现,如果父级只是有故障并且有竞争条件,它错过了等待的机会)但通常你'除非你强行终止父母,否则运气不好。

编辑:另一种方法,如果你绝望并且不想杀死父母,是用 gdb 附加到父母并强行调用waitpid僵尸孩子。

于 2011-06-13T20:11:27.700 回答
1

kill -17 ZOMBIE_PID

或者

kill -SIGCHLD ZOMBIE_PID

可能会起作用,但就像其他人所说的那样,它正在等待父母打电话wait(),所以除非父母没有收割而死,并且由于某种原因你可能不想杀死它而卡在那里。

于 2011-06-13T20:18:12.673 回答
0

如果我没记错的话,杀死僵尸进程的父进程将使僵尸进程死亡。

用于ps faux获取正在运行的进程的漂亮层次树,显示父/子关系。

于 2011-06-13T20:11:18.220 回答
-2

请参阅unix-faqs “我如何摆脱顽固的僵尸进程?”

你不能杀死僵尸,因为它们已经死了。但是如果你有太多的僵尸然后杀死父进程或重新启动服务。

您可以尝试使用其 pid 杀死僵尸进程

kill -9 pid

请注意,kill -9 并不能保证杀死僵尸进程

于 2011-06-13T20:12:11.753 回答