系统相关
首页 > 系统相关> > linux查找并杀死僵尸进程

linux查找并杀死僵尸进程

作者:互联网

1.top命令中可以查看是否存在僵尸进程

2.其他查看是否存在僵尸进程的命令:

ps -ef | grep defunct | grep -v grep | wc -l

3.获得父进程及僵尸进程的id:

ps -A -ostat,pid,ppid | grep -e '[zZ]'

4.杀死父进程来终止该僵尸进程:

kill -9 <parent_process_ID>

 

标签:ps,grep,僵尸,查看,查找,linux,进程,杀死
来源: https://www.cnblogs.com/zh-clara/p/15703872.html