系统相关
首页 > 系统相关> > Ubuntu 连接时显示 There is 1 zombie process.

Ubuntu 连接时显示 There is 1 zombie process.

作者:互联网

什么是僵尸进程?

僵尸进程是当子进程比父进程先结束,而父进程又没有回收子进程,释放子进程占用的资源,此时子进程将成为一个僵尸进程。

如何杀死僵尸进程

  1. 先找到僵尸进程
    ps axo stat,ppid,pid,comm | grep -w defunct

  2. 杀死父级进程
    sudo kill -9 <parent_process_number> parent_process_number对应第一点显示的ppid

标签:僵尸,父级,process,There,zombie,进程,杀死,ppid
来源: https://www.cnblogs.com/myquark/p/15171941.html