<?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: Can't kill the process in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372726#M195876</link>
    <description>You probably can't. If a process is not dying after kill -9, it's probably waiting on a blocking I/O. This kind of process will only disappear with a reboot. They are a real problem when executing themselves in a filesystem you want to unmount...&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
    <pubDate>Mon, 06 Sep 2004 03:59:12 GMT</pubDate>
    <dc:creator>Fred Ruffet</dc:creator>
    <dc:date>2004-09-06T03:59:12Z</dc:date>
    <item>
      <title>Can't kill the process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372724#M195874</link>
      <description>I found that there are process can't be kill even I use "kill -9 pid" , except reboot the system , how can I kill it ? thx.</description>
      <pubDate>Mon, 06 Sep 2004 03:47:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372724#M195874</guid>
      <dc:creator>peterchu</dc:creator>
      <dc:date>2004-09-06T03:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Can't kill the process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372725#M195875</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Unfortunately you answered your own question.&lt;BR /&gt;&lt;BR /&gt;A process needs to detect a signal to react&lt;BR /&gt; to it. Cases like zombies and processes in states like non reenterant io will never see the signal and can only be killed by a reboot.&lt;BR /&gt;&lt;BR /&gt;Sometimes using ndd to change timers can enable you to shorten waits and thus allow a process stuck on somthing like a tcp socket to exit itself.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;      Steve Steel</description>
      <pubDate>Mon, 06 Sep 2004 03:58:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372725#M195875</guid>
      <dc:creator>Steve Steel</dc:creator>
      <dc:date>2004-09-06T03:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can't kill the process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372726#M195876</link>
      <description>You probably can't. If a process is not dying after kill -9, it's probably waiting on a blocking I/O. This kind of process will only disappear with a reboot. They are a real problem when executing themselves in a filesystem you want to unmount...&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Sep 2004 03:59:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372726#M195876</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2004-09-06T03:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Can't kill the process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372727#M195877</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Killing its PPID could help sometimes, but if this does not work, the only solution is a reboot.&lt;BR /&gt;&lt;BR /&gt;In most of the cases a process is in kernel mode when you are not able to kill it. In this situation it coult be hung becouse it is trying to access a device that is not available/defect. Solving this problem could enable the kill command to reach the process.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;&lt;BR /&gt;Gideon</description>
      <pubDate>Mon, 06 Sep 2004 04:01:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372727#M195877</guid>
      <dc:creator>G. Vrijhoeven</dc:creator>
      <dc:date>2004-09-06T04:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: Can't kill the process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372728#M195878</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;if a process can't be killed even using "kill -9" there's unfortunately no other optin than rebooting the server :-(&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Franky</description>
      <pubDate>Mon, 06 Sep 2004 04:04:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372728#M195878</guid>
      <dc:creator>Franky_1</dc:creator>
      <dc:date>2004-09-06T04:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Can't kill the process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372729#M195879</link>
      <description>Use truss sort of tools to find the state of the process.&lt;BR /&gt;&lt;BR /&gt;Zombie processes cannot be killed.&lt;BR /&gt;&lt;BR /&gt;Do not kill processes with PPID 1.you are gone!!</description>
      <pubDate>Mon, 06 Sep 2004 04:18:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372729#M195879</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2004-09-06T04:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can't kill the process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372730#M195880</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Thanks for the correction! &lt;BR /&gt;(killing ppid 1 )&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Gideon</description>
      <pubDate>Mon, 06 Sep 2004 04:21:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372730#M195880</guid>
      <dc:creator>G. Vrijhoeven</dc:creator>
      <dc:date>2004-09-06T04:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can't kill the process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372731#M195881</link>
      <description>I guess you can remove the sahred memory on that process ,using "ipcs" command ,then "ipcrm" command.</description>
      <pubDate>Mon, 06 Sep 2004 09:45:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372731#M195881</guid>
      <dc:creator>presage112</dc:creator>
      <dc:date>2004-09-06T09:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can't kill the process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372732#M195882</link>
      <description>Process which can not be killed with kill -9 called as Zombie. It will be removed from system after reboot only.&lt;BR /&gt;&lt;BR /&gt;There is a possibility as "when ever it's PPID is 1 then it will be removed with in few times " Else Try to remove new PPID so that it's PPID will reach to 1...&lt;BR /&gt;&lt;BR /&gt;By normal, it will be removed on reboot only.&lt;BR /&gt;A discussion will give more information as,&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=686510" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=686510&lt;/A&gt;</description>
      <pubDate>Mon, 06 Sep 2004 11:03:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/can-t-kill-the-process/m-p/3372732#M195882</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-09-06T11:03:32Z</dc:date>
    </item>
  </channel>
</rss>

