- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Zombie process after reboot
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-14-2005 10:15 AM
тАО10-14-2005 10:15 AM
root 29937 2600 0 16:02:43 ? 0:00
Is this normal? Is it because the OS needs a patch to correct this? These are the set of patches installed on the server (HP-UX 11i, server rp7470)
BUNDLE11i B.11.11.0306.1 Required Patch Bundle for HP-UX 11i, June 2003
GOLDAPPS11i B.11.11.0412.5 Gold Applications Patches for HP-UX 11i v1, December 2004
GOLDBASE11i B.11.11.0412.5 Gold Base Patches for HP-UX 11i v1, December 2004
HWEnable11i B.11.11.0412.5 Hardware Enablement Patches for HP-UX 11i v1, December 2004
Any suggestion on how I could solve this problem. I would like some help on this. Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-14-2005 11:00 AM
тАО10-14-2005 11:00 AM
SolutionIf you do not have a performance problem or any other ill effect, I would not worry about this one process. But if there is an implication, adversity of any sort, my suggestion would be to reboot the system to a fresh start and immediately after reboot, go to the console, and hit ctrl-b and drop to gsp prompt. Execute a TC command at GSP> prompt. This will simulate a system crash and will write a crash dump. Provided you have enough space under /var/adm/crash, and a support agreement with HP, you can send this dump to them on a tape and they can tell you better than anyone else, what is causing the zombie process, if there is a way to determine it.
Of course this needs to be planned in advance to prevent any data corruption.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-14-2005 12:36 PM
тАО10-14-2005 12:36 PM
Re: Zombie process after reboot
root 29937 2600 ...
You know it's a root program, probably started by a startup script. The PPID is 2600, so look at the name of that process:
ps -fp 2600
It may not exist, but if it does, that is the problem program. When one program starts another, it is the responsibility of the parent to either assign that program to init or to wait until the child program terminates and then perform the appropriate cleanup tasks. Since a standard HP-UX system doesn't create any zombies at startup, look at the add-on startup tasks in /sbin/init.d and possibly /etc/inittab.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-14-2005 12:45 PM
тАО10-14-2005 12:45 PM
Re: Zombie process after reboot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2005 07:55 PM
тАО10-16-2005 07:55 PM
Re: Zombie process after reboot
on hpux 11.11 (and 11.23 ?) if the defunct process is a child of the ia64_corehw process, it's not a real zombie, it is the normal operation for ia64_corehw.
Joel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2005 08:06 PM
тАО10-16-2005 08:06 PM
Re: Zombie process after reboot
/usr/sbin/stm/uut/bin/tools/monitor/ia64_corehw will create a defunct process (Zombie) always.
# ps -efxl | grep -i defunct
1 Z root 7232 2545 0 178 20 450edb80 0 - 01:54:37 ? 0:00
# ps -efxl | grep -i ia64
1 S root 2545 1 0 154 20 4505a100 397 bb2300 Oct 10 ? 3:20 /usr/sbin/stm/uut/bin/tools/monitor/ia64_corehw
It is default so that don't worry.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2005 08:20 PM
тАО10-16-2005 08:20 PM
Re: Zombie process after reboot
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2005 02:52 AM
тАО10-17-2005 02:52 AM
Re: Zombie process after reboot
You can check that this is what you're seeing by a) checking the parent process, which will be ia64_corehw, and b) noticing that in fact it's a new
This
There will be some changes in a future release of the OnlineDiags that will mean that on most systems the
Andrew