<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Zombie process after reboot in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649963#M240337</link>
    <description>In 11.11 os there is a process called &lt;BR /&gt;/usr/sbin/stm/uut/bin/tools/monitor/ia64_corehw will create a defunct process (Zombie) always.&lt;BR /&gt;&lt;BR /&gt;# ps -efxl | grep -i defunct&lt;BR /&gt;  1 Z     root  7232  2545  0 178 20         450edb80    0                - 01:54:37 ?         0:00 &lt;DEFUNCT&gt;&lt;BR /&gt;# ps -efxl | grep -i ia64&lt;BR /&gt;  1 S     root  2545     1  0 154 20         4505a100  397           bb2300  Oct 10  ?         3:20 /usr/sbin/stm/uut/bin/tools/monitor/ia64_corehw&lt;BR /&gt;&lt;BR /&gt;It is default so that don't worry.&lt;BR /&gt;&lt;BR /&gt;hth.&lt;/DEFUNCT&gt;</description>
    <pubDate>Mon, 17 Oct 2005 03:06:50 GMT</pubDate>
    <dc:creator>Muthukumar_5</dc:creator>
    <dc:date>2005-10-17T03:06:50Z</dc:date>
    <item>
      <title>Zombie process after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649958#M240332</link>
      <description>Hi guys.  I've been having a problem with a process.  The system keeps displaying a zombie process just after I reboot the server.  I tried to kill the process but it doesn't work, I rebooted the system so it can be removed, but still doesn't work.  I don't know why this process keeps showing up:&lt;BR /&gt;&lt;BR /&gt;root 29937  2600  0 16:02:43 ?         0:00 &lt;DEFUNCT&gt;&lt;BR /&gt;&lt;BR /&gt;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)&lt;BR /&gt;&lt;BR /&gt; BUNDLE11i                     B.11.11.0306.1 Required Patch Bundle for HP-UX 11i, June 2003 &lt;BR /&gt;  GOLDAPPS11i                   B.11.11.0412.5 Gold Applications Patches for HP-UX 11i v1, December 2004 &lt;BR /&gt;  GOLDBASE11i                   B.11.11.0412.5 Gold Base Patches for HP-UX 11i v1, December 2004 &lt;BR /&gt;  HWEnable11i                   B.11.11.0412.5 Hardware Enablement Patches for HP-UX 11i v1, December 2004 &lt;BR /&gt;&lt;BR /&gt;Any suggestion on how I could solve this problem.  I would like some help on this.  Thanks.&lt;/DEFUNCT&gt;</description>
      <pubDate>Fri, 14 Oct 2005 17:15:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649958#M240332</guid>
      <dc:creator>Carlos Munoz Lopez</dc:creator>
      <dc:date>2005-10-14T17:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Zombie process after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649959#M240333</link>
      <description>Zombie processes sometimes happen, despite how much we hate to see them. Not all zombies are resource eaters and without somebody analyzing your system by logging in to it, it is very hard to determine what is causing the zombie. &lt;BR /&gt;&lt;BR /&gt;If 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&amp;gt; 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.&lt;BR /&gt;&lt;BR /&gt;Of course this needs to be planned in advance to prevent any data corruption.</description>
      <pubDate>Fri, 14 Oct 2005 18:00:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649959#M240333</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2005-10-14T18:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Zombie process after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649960#M240334</link>
      <description>Poor programming techniques are the most common cause for zombies or defunct programs. You can't kill the program because it is already dead (hence the name: zombie). It consumes no resources, not even memory. It's just an entry in the process table. Start figuring out the cause by finding the parent:&lt;BR /&gt; &lt;BR /&gt;root 29937 2600 ...&lt;BR /&gt; &lt;BR /&gt;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:&lt;BR /&gt; &lt;BR /&gt;ps -fp 2600&lt;BR /&gt; &lt;BR /&gt;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.</description>
      <pubDate>Fri, 14 Oct 2005 19:36:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649960#M240334</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2005-10-14T19:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Zombie process after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649961#M240335</link>
      <description>Ok, thank you guys.  I will generate the crash dump and send it to HP Support if the zombie process shows up again next time I reboot the system.  Thanks for all your help.</description>
      <pubDate>Fri, 14 Oct 2005 19:45:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649961#M240335</guid>
      <dc:creator>Carlos Munoz Lopez</dc:creator>
      <dc:date>2005-10-14T19:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: Zombie process after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649962#M240336</link>
      <description>Carlos,&lt;BR /&gt;&lt;BR /&gt;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.&lt;BR /&gt;&lt;BR /&gt;Joel</description>
      <pubDate>Mon, 17 Oct 2005 02:55:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649962#M240336</guid>
      <dc:creator>Joel Girot</dc:creator>
      <dc:date>2005-10-17T02:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Zombie process after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649963#M240337</link>
      <description>In 11.11 os there is a process called &lt;BR /&gt;/usr/sbin/stm/uut/bin/tools/monitor/ia64_corehw will create a defunct process (Zombie) always.&lt;BR /&gt;&lt;BR /&gt;# ps -efxl | grep -i defunct&lt;BR /&gt;  1 Z     root  7232  2545  0 178 20         450edb80    0                - 01:54:37 ?         0:00 &lt;DEFUNCT&gt;&lt;BR /&gt;# ps -efxl | grep -i ia64&lt;BR /&gt;  1 S     root  2545     1  0 154 20         4505a100  397           bb2300  Oct 10  ?         3:20 /usr/sbin/stm/uut/bin/tools/monitor/ia64_corehw&lt;BR /&gt;&lt;BR /&gt;It is default so that don't worry.&lt;BR /&gt;&lt;BR /&gt;hth.&lt;/DEFUNCT&gt;</description>
      <pubDate>Mon, 17 Oct 2005 03:06:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649963#M240337</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-10-17T03:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: Zombie process after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649964#M240338</link>
      <description>If you have STM installed, it will create defunct process. Anyways, its a bug. you can check for patches in ITRC soon..&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Mon, 17 Oct 2005 03:20:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649964#M240338</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2005-10-17T03:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: Zombie process after reboot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649965#M240339</link>
      <description>The &lt;DEFUNCT&gt; child of ia64_corehw is not a bug as such, and it is not planned to be fixed in a patch to the OnlineDiags.&lt;BR /&gt;&lt;BR /&gt;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 &lt;DEFUNCT&gt; process every minute.&lt;BR /&gt;&lt;BR /&gt;This &lt;DEFUNCT&gt; process is using no resources apart from a process slot, and is just waiting to be cleaned up by its parent.&lt;BR /&gt;&lt;BR /&gt;There will be some changes in a future release of the OnlineDiags that will mean that on most systems the &lt;DEFUNCT&gt; process will not appear.&lt;BR /&gt;&lt;BR /&gt;Andrew&lt;/DEFUNCT&gt;&lt;/DEFUNCT&gt;&lt;/DEFUNCT&gt;&lt;/DEFUNCT&gt;</description>
      <pubDate>Mon, 17 Oct 2005 09:52:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zombie-process-after-reboot/m-p/3649965#M240339</guid>
      <dc:creator>Andrew Merritt_2</dc:creator>
      <dc:date>2005-10-17T09:52:49Z</dc:date>
    </item>
  </channel>
</rss>

