Zombie process question


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Zombie process question
# 1  
Old 04-17-2011
Zombie process question

Hey guys,

So i did some research on the site but previous posts answered most of my questions about zombie processes but I have one question that didnt seem to get addressed

"how do you find the parent or parent ID of a zombie process so you can kill it?"

I know p -kill doesnt always just work on the zombie process so how would you find the associated parent so you can just kill the parent process and all associated zombie processes?

---------- Post updated at 07:33 PM ---------- Previous update was at 05:52 PM ----------

Nevermind, I found the answer

Heres how you would find the parent associated with the zombie

1.Do ps-aux first and look for the letter "z" in the stat column

2. Obtain the PID of the zombie

3. Do this command to find the parent ID that relates to the zombie and then kill it:
# ps aux -eo ppid| grep <Zombie Process ID>
# kill -9 <PPID>
This User Gave Thanks to kingpin007 For This Post:
# 2  
Old 04-18-2011
MySQL

Thanks for researching your own question and posting the answer.
# 3  
Old 04-18-2011
Quote:
Originally Posted by kingpin007
Hey guys,

So i did some research on the site but previous posts answered most of my questions about zombie processes but I have one question that didnt seem to get addressed

"how do you find the parent or parent ID of a zombie process so you can kill it?"

I know p -kill doesnt always just work on the zombie process so how would you find the associated parent so you can just kill the parent process and all associated zombie processes?

---------- Post updated at 07:33 PM ---------- Previous update was at 05:52 PM ----------

Nevermind, I found the answer

Heres how you would find the parent associated with the zombie

1.Do ps-aux first and look for the letter "z" in the stat column

2. Obtain the PID of the zombie

3. Do this command to find the parent ID that relates to the zombie and then kill it:
# ps aux -eo ppid| grep <Zombie Process ID>
# kill -9 <PPID>
Code:
ps -eo state= | grep Z

will also help to find zombie process
# 4  
Old 04-18-2011
This argument seems to be flawed. A Zombie process is already dead. Most versions of unix will clean them up automatically. A "kill" command will have no effect on a Zombie process. If the Zombie process is hung up on I/O it may take a reboot to get rid of that process in which case you may see the error message "some processes refuse to die".
# 5  
Old 04-19-2011
Zombies are already dead but they will not go away until the parent issues a wait call for them. Killing the parent works because init will inherit the zombie and issue that wait call. A process that is hung up on I/O is not a zombie.
# 6  
Old 04-19-2011
Quote:
A process that is hung up on I/O is not a zombie
True. But a Zombie process which is also hung on I/O may never go away without a reboot. I have seen this with failed hardware monitoring software.

Anybody got an example to post?

It is important that we do not confuse Orphan processes (where the parent has failed) with a Zombie processes.

Finding Zombie processes depends on what version of "ps" your have.
For example:
Code:
Berkeley
ps -eo state,pid,ppid|grep \^Z
Unix SV
ps -ef|grep "defunct"


This piece of code is crude and dangerous (and it doesn't work):
Quote:
3. Do this command to find the parent ID that relates to the zombie and then kill it:
# ps aux -eo ppid| grep <Zombie Process ID>
# kill -9 <PPID>
Use the "ps -p" switch to look up the parent process ID.
Code:
ps -p<PID> -oppid

Then look carefully at the process before considering killing the process using the correct kill signal for that process (which is unlikely to be "-9"). Also do not kill init (PID 1).


One way to cause Zombie processes and other horrors is indiscriminate use of "kill -9".

Last edited by methyl; 04-19-2011 at 01:53 PM..
# 7  
Old 04-19-2011
Quote:
Originally Posted by methyl
True. But a Zombie process which is also hung on I/O
No such thing. A Zombie has completed execution of the exit system call. Zombies are not hung on I/O. A process can be hung on I/O and it may indeed require a reboot to fix. But that process was no Zombie.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Zombie process

What is the overhead associated with zombie process?Is it running out of process-ID?:confused: Since some information is stored in process table.. Thanks in Advance (4 Replies)
Discussion started by: jois
4 Replies

2. Solaris

How to Kill Zombie Process

Dear Bos, I have one server,everday if I check with command TOP always present zombie,like below: last pid: 4578; load averages: 0.15, 0.11, 0.13 07:56:15 298 processes: 295 sleeping, 1... (10 Replies)
Discussion started by: fredginting
10 Replies

3. AIX

zombie process

Is there an equivilant to the preap command in AIX that would allow me to get rid of a zombie process. I am new to AIX, moving over from Solaris and in the past I have been able to preap the pid on the defunct process to clean them up. I have looked around and the best I can see is that it may... (3 Replies)
Discussion started by: sboots
3 Replies

4. Solaris

zombie process

dear friends, in an interview they asked me what is zombie process. how we can identifying these process.if can you kill all zombie process. (8 Replies)
Discussion started by: sijocg
8 Replies

5. Shell Programming and Scripting

Zombie process

Hi I need help because I don't know if it is possible to add a find inside a cat. like I have a file with the pid of the process that use to became zombie. And I have the same pid stored in the var (pid1) now, I have no clue how to check if the the find finds the pid or even if it's... (2 Replies)
Discussion started by: ruben.rodrigues
2 Replies

6. Linux

How to kill zombie process

I have RHES4 machine with VRTSralus - Backup Exec agent installed there and running as a service. The agent hiccups sometimes and turns into defunct state. The problem is that I cannot kill it anyway., it stays there forever until the machine is rebooted. I wonder if anyone had such an experience... (1 Reply)
Discussion started by: will_mike
1 Replies

7. Linux

zombie process

Hi What is the command to find only the zombie processes?? How to write the code in C to fetch the no. of zombie processes?? Thanx (5 Replies)
Discussion started by: jeenat
5 Replies

8. UNIX for Advanced & Expert Users

zombie daemon process!!

My daemon process is the child of init and init has the responsibility to remove it, once it turns zombie. But I want to ask why the daemon process which is child of init turns zombie in the first place. What measures I have to take to avoid this? rish (1 Reply)
Discussion started by: rish2005
1 Replies

9. UNIX for Advanced & Expert Users

Zombie process

I would like to create a zombie process so that I can test monitoring software functionality. Any techniques? (2 Replies)
Discussion started by: swhitney
2 Replies

10. UNIX for Dummies Questions & Answers

Zombie process

How do i kill a zombie process. Is it that only root can kill a zombie process. (8 Replies)
Discussion started by: orca
8 Replies
Login or Register to Ask a Question