系统相关
首页 > 系统相关> > linux – 无法清除父级为init的僵尸进程

linux – 无法清除父级为init的僵尸进程

作者:互联网

我有一个僵尸进程:

$ps aux | grep Zl
root      6641  122  0.0  0 0 ? Zl   08:57 371:10 [ovs_dpdk] <defunct>

而且,它的父母看起来像init

$pstree
init─┬─acpid
     ├─atd
     ├─cron
     ├─dbus-daemon
     ├─dnsmasq
     ├─6*[getty]
     ├─irqbalance
     ├─libvirtd───10*[{libvirtd}]
     ├─ovs_dpdk───{ovs_dpdk}               <==== here
     ├─rpc.idmapd

但是,杀死-9并没有杀死他……

sudo kill -9 6641

我在这里难过,有什么帮助吗?

解决方法:

你不能杀死一个僵尸,因为它已经死了.

标签:linux,kill,zombie-process
来源: https://codeday.me/bug/20190624/1281014.html