有没有办法杀死僵尸进程?我曾尝试调用exit
来终止进程,甚至向进程发送SIGINT
信号,但似乎没有任何东西可以杀死它。我正在为Linux编程。
答案 0 :(得分:11)
僵尸进程已经死亡,因此它们无法被杀死,只能被收获,这必须由其父进程通过wait*()
完成。这通常在child reaper
的信号处理程序中称为SIGCHLD
惯用语:
while (wait*(... WNOHANG ...)) {
...
}
答案 1 :(得分: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 "***********************************************************"
享受。
答案 2 :(得分:2)
僵尸进程是其父进程尚未等待的进程ID(以及关联的终止状态和资源使用信息)。消除它的唯一方法是让它的父母等待它(有时这可以通过手动发送SIGCHLD
来实现,如果父母只是错误并且有一个竞争条件,它错过了等待的机会)但通常你运气不好,除非你强行终止父母。
编辑:另一种方式,如果你绝望并且不想杀死父母,就是用gdb附加到父级并强行在僵尸孩子上调用waitpid
答案 3 :(得分:0)
如果我没记错的话,杀死僵尸进程的父进程会让僵尸进程死掉。
使用ps faux
获取正在运行的流程的一个很好的分层树,显示父/子关系。
答案 4 :(得分:0)
kill -17 ZOMBIE_PID
OR
kill -SIGCHLD ZOMBIE_PID
可能会工作,就像其他人说的那样,它正在等待父母打电话给wait()
,所以除非父母在没有收获的情况下去世,并且由于某种原因它被困在那里你可能不想杀死它。
答案 5 :(得分:-2)
请参阅unix-faqs“我如何摆脱坚持不懈的僵尸进程?”
你无法杀死僵尸,因为它们已经死了。但如果你有太多的僵尸,那么杀死父进程或重新启动服务。
您可以尝试使用其pid杀死僵尸进程
kill -9 pid
请注意,kill -9不能保证杀死僵尸进程