1832085 Members
2923 Online
110037 Solutions
New Discussion

kill -9 does not kill???

 
dhanish
Regular Advisor

kill -9 does not kill???

Hi,
I am trying to kill one process but it is not getting killed using kill -9 .In hp can we kill these processes which are not getting killed forcibly by any means???

thnks
Never Say Die
7 REPLIES 7
Mervyn Stephens
Occasional Advisor

Re: kill -9 does not kill???

If you do not require it you could try killing the parent process as well.
George_Dodds
Honored Contributor

Re: kill -9 does not kill???

What application does the proc belong to?
With some apps -9 wont work
George_Dodds
Honored Contributor

Re: kill -9 does not kill???

ITO procs require kill -11 to bump em off!
Steve Steel
Honored Contributor

Re: kill -9 does not kill???

Hi


A process that has exited and has a parent, but has not yet been
waited for by the parent, is marked (see zombie process in
exit(2)).

Similarly, defunct processes (see ps(1)) may have already finished
executing, but remain on the system until their parent reaps them
(see wait(2)). Using kill to send signals to them has no effect.


Steve Steel
If you want truly to understand something, try to change it. (Kurt Lewin)
dhanish
Regular Advisor

Re: kill -9 does not kill???

Hi ,
Its a gdb process and i hav eseen earlier also smtimes the processes does not get get kill using -9.So do have some directory in HP like in solarais /proc where you can go and delete the process file/dir then the corresponding process will be killed.

thnks
Never Say Die
David Navarro
Respected Contributor

Re: kill -9 does not kill???

Hi, no, you haven't any similar.
Some times, some processes hangs and you need to reboot machine.I don't know if there are another way to do that, any command or some hint.

David.
James R. Ferguson
Acclaimed Contributor

Re: kill -9 does not kill???

Hi:

Neither zombies nor processes waiting on IO can be killed. Patience or a reboot is the only way to eliminate them.

Regards!

...JRF...