<?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: process zombie in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068174#M6608</link>
    <description>Whilst what Yu mentioned are good steps for clean-up, it won't necessarily fix things.&lt;BR /&gt;&lt;BR /&gt;If it is a true zombie process who's parent has died (as Mark talked about), then you won't be able to kill it, and as Steven and Twang said, a reboot will be required.&lt;BR /&gt;&lt;BR /&gt;If a process has gone truely gone zombie, there is nothing you can do.</description>
    <pubDate>Fri, 12 Sep 2003 03:03:22 GMT</pubDate>
    <dc:creator>Stuart Browne</dc:creator>
    <dc:date>2003-09-12T03:03:22Z</dc:date>
    <item>
      <title>process zombie</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068169#M6603</link>
      <description>Hi to all,&lt;BR /&gt;As I kill processes zombie?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Manuel,</description>
      <pubDate>Wed, 10 Sep 2003 21:21:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068169#M6603</guid>
      <dc:creator>Manuel_5</dc:creator>
      <dc:date>2003-09-10T21:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: process zombie</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068170#M6604</link>
      <description>kill -9 PID &lt;BR /&gt;&lt;BR /&gt;PID is process id&lt;BR /&gt;&lt;BR /&gt;If that does not work, then reboot the box.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 11 Sep 2003 00:06:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068170#M6604</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-09-11T00:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: process zombie</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068171#M6605</link>
      <description>Hi Manuel,&lt;BR /&gt;&lt;BR /&gt;It seems that you need to reboot your system to remove those processes zombie, but if you cannot reboot it now, it should not cause you too much trouble until downtime can be arranged.&lt;BR /&gt;&lt;BR /&gt;best regards&lt;BR /&gt;twang</description>
      <pubDate>Thu, 11 Sep 2003 01:38:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068171#M6605</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2003-09-11T01:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: process zombie</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068172#M6606</link>
      <description>A zombie process is a process that has finished execution but whose parent has not issued a "wait()"&lt;BR /&gt;&lt;BR /&gt;The zombie process will go away as soon as the parent process does the "wait()".    If they are staying around for a while, then you have an application that is not behaving properly and you should try and investigate which one it is.&lt;BR /&gt;&lt;BR /&gt;It is worth pointing out that unless you get lots and lots of these, they aren't taking up resources.&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Sep 2003 06:46:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068172#M6606</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2003-09-11T06:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: process zombie</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068173#M6607</link>
      <description>No. You don't have to reboot your box for getting rid of the zombies. Here are steps:&lt;BR /&gt;&lt;BR /&gt;-get pid of the zombie (defunc);&lt;BR /&gt;-then ps -elf|grep pid. This will show parent and/or child(ren) process of the zombie.&lt;BR /&gt;&lt;BR /&gt;-if the zombie's parent process is 1 (init), there must be at least one child process belongs to this zombie. From above ps command, you will see the pid of the child process. &lt;BR /&gt;Use kill -9 childpid. Then the zombie would go away.&lt;BR /&gt;&lt;BR /&gt;-if the zombie's parent process is not 1, then you need use ps to grep the parent process. If there are no more other child processes running under the parent process, use kill -9 parentpid. then the zombie would go away. But if the parent has other child running, you might want to be careful in that killing parent may terminate those child processes as well.&lt;BR /&gt;&lt;BR /&gt;I came out this method and use it in my system frequently and it works just perfect.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.</description>
      <pubDate>Thu, 11 Sep 2003 12:00:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068173#M6607</guid>
      <dc:creator>Yu Wang_1</dc:creator>
      <dc:date>2003-09-11T12:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: process zombie</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068174#M6608</link>
      <description>Whilst what Yu mentioned are good steps for clean-up, it won't necessarily fix things.&lt;BR /&gt;&lt;BR /&gt;If it is a true zombie process who's parent has died (as Mark talked about), then you won't be able to kill it, and as Steven and Twang said, a reboot will be required.&lt;BR /&gt;&lt;BR /&gt;If a process has gone truely gone zombie, there is nothing you can do.</description>
      <pubDate>Fri, 12 Sep 2003 03:03:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068174#M6608</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2003-09-12T03:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: process zombie</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068175#M6609</link>
      <description />
      <pubDate>Fri, 12 Sep 2003 03:14:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068175#M6609</guid>
      <dc:creator>Glen Trevino</dc:creator>
      <dc:date>2003-09-12T03:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: process zombie</title>
      <link>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068176#M6610</link>
      <description>So, to sum up ;-)&lt;BR /&gt;&lt;BR /&gt;A you cannot kill a zombie as it is already dead. That is why it is called a zombie!&lt;BR /&gt;&lt;BR /&gt;The zombie hangs around *purely* as an entry in your process table. This is so that it can report its exit code, CPU time, and a few other stats back to the parent process that initiated it.&lt;BR /&gt;&lt;BR /&gt;If the parent process has died off without wait()ing for the exit status, etc., then the zombie may well be orphaned and cannot be removed by any means other than a reboot.&lt;BR /&gt;&lt;BR /&gt;However, as I said earlier, it is only taking up one slot in your process table - it doesn't consume memory, or CPU (pre se), so the only side effect of a zombie process lingering is that, if you find processes spawning a large number of zombies, you will eventually run out of process space and your computer will fall over.&lt;BR /&gt;&lt;BR /&gt;Zombies are generally the result of poorly written software.&lt;BR /&gt;&lt;BR /&gt;Hope this helps (HTH).&lt;BR /&gt;&lt;BR /&gt;B.&lt;BR /&gt;&lt;BR /&gt;ps A quick search on google would have answered this and more, more quickly! ;-)</description>
      <pubDate>Mon, 22 Sep 2003 04:13:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/process-zombie/m-p/3068176#M6610</guid>
      <dc:creator>Andrew Bruce</dc:creator>
      <dc:date>2003-09-22T04:13:27Z</dc:date>
    </item>
  </channel>
</rss>

