Zombie Process UNix/Linux
Zombie process is a finished process but whose entry is still there in Process Table , to return exit status to Parent process who started it!
How to list Zombie process :
------------------------------
ps -auxZ | grep "Z" --> short way to list Zombie processes
You can kill zombie process by killing its parent process
How to Know parent process of zombie process :
---------------------------------------------------
pstree -p | grep "zombie process name"
and kill parent using
kill -9 parent process
Thank You,
have a nice day!
0 comments:
Post a Comment