美文网首页
zombie process

zombie process

作者: cannedfishcan | 来源:发表于2021-05-10 10:02 被阅读0次

我的系统里出现了zombie, 看起来需要处理;
查找了一些相关资料, 比较符合逻辑的处理方式:

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}

https://stackoverflow.com/questions/16944886/how-to-kill-zombie-process

相关文章

网友评论

      本文标题:zombie process

      本文链接:https://www.haomeiwen.com/subject/pfgbdltx.html