Operating System - HP-UX
1752567 Members
4947 Online
108788 Solutions
New Discussion юеВ

Low performance of HP Unix 11i machine

 
contactvenky2005
New Member

Low performance of HP Unix 11i machine

When i run top command and check the performance of an unix machine, i am able to find 14 zombies processes running. Will it be the reason for slow performance of my machine?. If so, Suggest me how to kill the zombie processes.
6 REPLIES 6
Torsten.
Acclaimed Contributor

Re: Low performance of HP Unix 11i machine

You cannot kill a zombie - it is already dead.

The only solution is a reboot.

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
RAC_1
Honored Contributor

Re: Low performance of HP Unix 11i machine

That might be or might not be the reason for performance problem. You can not kill zombies. They are like dead processes, waiting on some i/os.

With glance, do you see any of the resources hitting maximum-cpu, disk, memory etc?
There is no substitute to HARDWORK
James R. Ferguson
Acclaimed Contributor

Re: Low performance of HP Unix 11i machine

Hi:

As noted, you can't kill a 'zombie' process. As the name implies, it's already dead!

Zombies arise when a parent process fails to ignore its child's termination or fails to wait on its child.

Zombie processes consume a slot in the kernel's process table (whose limits are governed by the kernel tunable, 'nproc') but otherwise do no harm. They don't consume memory nor processor cyclces. At worst, you waste potential slots in the process table for allocating new processes.

Regards!

...JRF...

Bill Hassell
Honored Contributor

Re: Low performance of HP Unix 11i machine

zombies or defunct processes are the result of imporper handling of parent-child programs. Byt the 14 zombies have no effect on performance. You need to identify why you think it is slow. For instance, did the system run faster in the past? Or is the system being compared to another system? Performance problems require an understanding of what is normal for the application programs in terms of disk I/O, LAN, memory and CPU usage.


Bill Hassell, sysadmin
Steven E. Protter
Exalted Contributor

Re: Low performance of HP Unix 11i machine

Shalom,

Zombies aren't really doing anything.

First you try a kill

If that fails kill -9

If that fails only a system boot will fix them.

You clearly have an application problem and need to track the processes back to the application and deal with the vendor or programmers involved.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
contactvenky2005
New Member

Re: Low performance of HP Unix 11i machine

thankx a lot. The replies were really helpful to me. As it was sugested there was no problem with zombie process, ather it was with i/o from disk