问题描述
- 如图所示,进程就是kill不掉 如何彻底杀掉rsc.sh的进程
-
[root@app01 ~]# ps aux|grep rsc.sh
root 63891 0.0 0.0 103252 852 pts/1 S+ 10:35 0:00 grep rsc.sh
[root@app01 ~]# kill -9 63891
-bash: kill: (63891) - No such process
[root@app01 ~]# ps aux|grep rsc.sh
root 63968 0.0 0.0 103252 848 pts/1 S+ 10:35 0:00 grep rsc.sh
[root@app01 ~]#
解决方案
rsc.sh应该是103252进程spawn出来的
可以看看它们是在干什么
如果可以结束,那么可以尝试kill父进程
时间: 2024-09-20 14:42:51