Problem: zombie process appeared in ps
Solution: find it’s parent process,and kill it
ps -xo pid,ppid,stat,command | grep your_zombie_process_name kill -9 ppid_of_zombie_process
Found this useful information here
Developer from somewhere
Problem: zombie process appeared in ps
Solution: find it’s parent process,and kill it
ps -xo pid,ppid,stat,command | grep your_zombie_process_name kill -9 ppid_of_zombie_process
Found this useful information here