<?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: Difference between Kill -9 and Kill -15 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-kill-9-and-kill-15/m-p/3504786#M217199</link>
    <description>kill -15 allows the process to clean up behind itself.  kill -9 is rather brute force and can leave orphaned processes.  You're likely to have zombies and defunct (potentially processes owned by init which can only be removed with a reboot ) with kill -9.</description>
    <pubDate>Tue, 15 Mar 2005 07:34:23 GMT</pubDate>
    <dc:creator>Cheryl Griffin</dc:creator>
    <dc:date>2005-03-15T07:34:23Z</dc:date>
    <item>
      <title>Difference between Kill -9 and Kill -15</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-kill-9-and-kill-15/m-p/3504783#M217196</link>
      <description>We use shut down scripts to kill many of our back ground process during end of business day. In those scripts there are processes which are killed using the value -15. Could anyone please tell me where we  use kill -15 and kill -9 and what is the difference between them.</description>
      <pubDate>Tue, 15 Mar 2005 06:08:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-kill-9-and-kill-15/m-p/3504783#M217196</guid>
      <dc:creator>Amith_2</dc:creator>
      <dc:date>2005-03-15T06:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Kill -9 and Kill -15</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-kill-9-and-kill-15/m-p/3504784#M217197</link>
      <description>from man kill&lt;BR /&gt;   9     SIGKILL   Kill            Forced termination; cannot be trapped&lt;BR /&gt;     15     SIGTERM   Terminate       Terminate; can be trapped&lt;BR /&gt;&lt;BR /&gt;regards,</description>
      <pubDate>Tue, 15 Mar 2005 06:12:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-kill-9-and-kill-15/m-p/3504784#M217197</guid>
      <dc:creator>Henk Geurts</dc:creator>
      <dc:date>2005-03-15T06:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Kill -9 and Kill -15</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-kill-9-and-kill-15/m-p/3504785#M217198</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Check this thread.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=118528" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=118528&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Tue, 15 Mar 2005 06:12:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-kill-9-and-kill-15/m-p/3504785#M217198</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2005-03-15T06:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Kill -9 and Kill -15</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-kill-9-and-kill-15/m-p/3504786#M217199</link>
      <description>kill -15 allows the process to clean up behind itself.  kill -9 is rather brute force and can leave orphaned processes.  You're likely to have zombies and defunct (potentially processes owned by init which can only be removed with a reboot ) with kill -9.</description>
      <pubDate>Tue, 15 Mar 2005 07:34:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-kill-9-and-kill-15/m-p/3504786#M217199</guid>
      <dc:creator>Cheryl Griffin</dc:creator>
      <dc:date>2005-03-15T07:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Kill -9 and Kill -15</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-kill-9-and-kill-15/m-p/3504787#M217200</link>
      <description>Amith --&lt;BR /&gt;&lt;BR /&gt;I personally use just plain kill which does a kill -15 first and then if that doesnt work, I'll use kill -9.&lt;BR /&gt;&lt;BR /&gt;Checking the various shutdown scripts, I find that the only ones using kill -9 are:&lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/SnmpHpunix:&lt;BR /&gt;/sbin/init.d/SnmpMaster:&lt;BR /&gt;/sbin/init.d/SnmpMib2:&lt;BR /&gt;/sbin/init.d/SnmpTrpDst:&lt;BR /&gt;/sbin/init.d/emsa:&lt;BR /&gt;/sbin/init.d/hparray:&lt;BR /&gt;/sbin/init.d/nfs.client:&lt;BR /&gt;&lt;BR /&gt;The others are just using the default "kill -15".&lt;BR /&gt;&lt;BR /&gt;You may have other scripts using kill -9 depending on what you have installed.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Kent M. Ostby</description>
      <pubDate>Tue, 15 Mar 2005 07:40:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-kill-9-and-kill-15/m-p/3504787#M217200</guid>
      <dc:creator>Kent Ostby</dc:creator>
      <dc:date>2005-03-15T07:40:03Z</dc:date>
    </item>
  </channel>
</rss>

