<?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 Problems to kill processes in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-kill-processes/m-p/3820494#M269935</link>
    <description>Hi !!!&lt;BR /&gt;Every day its run a process into the server, this file remove files .. it is every hour, right now i can see like 20 of this one running, also i have a file system full, i need to kill them but i can't do it .. how can i kill them ?&lt;BR /&gt;i'm running:&lt;BR /&gt;kill -9 user-id  (with root) but it can not do it !!!&lt;BR /&gt;&lt;BR /&gt;Thanks ...</description>
    <pubDate>Mon, 10 Jul 2006 08:53:05 GMT</pubDate>
    <dc:creator>Manuales</dc:creator>
    <dc:date>2006-07-10T08:53:05Z</dc:date>
    <item>
      <title>Problems to kill processes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-kill-processes/m-p/3820494#M269935</link>
      <description>Hi !!!&lt;BR /&gt;Every day its run a process into the server, this file remove files .. it is every hour, right now i can see like 20 of this one running, also i have a file system full, i need to kill them but i can't do it .. how can i kill them ?&lt;BR /&gt;i'm running:&lt;BR /&gt;kill -9 user-id  (with root) but it can not do it !!!&lt;BR /&gt;&lt;BR /&gt;Thanks ...</description>
      <pubDate>Mon, 10 Jul 2006 08:53:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-kill-processes/m-p/3820494#M269935</guid>
      <dc:creator>Manuales</dc:creator>
      <dc:date>2006-07-10T08:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to kill processes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-kill-processes/m-p/3820495#M269936</link>
      <description>Hi Manuales:&lt;BR /&gt;&lt;BR /&gt;If you are running as 'root' and a 'kill -9' doesn't kill a process, then the process is in an un-killable state -- waiting on a signal, I/O completion or running in kernel code.&lt;BR /&gt;&lt;BR /&gt;A full filesystem can cripple a server.  Try manually removing a file, if you can, to regain space.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 10 Jul 2006 08:58:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-kill-processes/m-p/3820495#M269936</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-07-10T08:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to kill processes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-kill-processes/m-p/3820496#M269937</link>
      <description>First, you need to improve your cron'ed script so that multiple instances of the script do not run. The most straightforward way is to test for the existence of a lock file and if found exit; otherwise, you create the lock file and execute. You then remove the lock file atr the end of this script so that the next time the script is executed no lock file is found.&lt;BR /&gt;&lt;BR /&gt;Kill is perhaps the worst named system call and command in UNIX. It should really be called something like "sendsignal" --- that's all a kill actually is. If a process (like yours) is waiting on a higher-priority event such as an i/o operation, it will never respond to a signal until the higher priority event is satisfied. If the system didn't work like this the things like filesystem corruption (because the signals stopped incomplete actions) would be very common.&lt;BR /&gt;&lt;BR /&gt;Almost certainly, you are going to have to reboot to fix your problem but if you fix the script as I mentioned earlier, your other problems willl probably not arise again.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 10 Jul 2006 09:03:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-kill-processes/m-p/3820496#M269937</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-07-10T09:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to kill processes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-kill-processes/m-p/3820497#M269938</link>
      <description>thanks... &lt;BR /&gt;also, with dmesg command its reports:&lt;BR /&gt;&lt;BR /&gt;DIAGNOSTIC SYSTEM WARNING:&lt;BR /&gt;   The diagnostic logging facility is no longer receiving excessive&lt;BR /&gt;   errors from the I/O subsystem.  7 I/O error entries were lost.&lt;BR /&gt;DIAGNOSTIC SYSTEM WARNING:&lt;BR /&gt;   The diagnostic logging facility has started receiving excessive&lt;BR /&gt;   errors from the I/O subsystem.  I/O error entries will be lost&lt;BR /&gt;   until the cause of the excessive I/O logging is corrected.&lt;BR /&gt;   If the diaglogd daemon is not active, use the Daemon Startup command&lt;BR /&gt;   in stm to start it.&lt;BR /&gt;   If the diaglogd daemon is active, use the logtool utility in stm&lt;BR /&gt;   to determine which I/O subsystem is logging excessive errors.&lt;BR /&gt;&lt;BR /&gt;what does last one mean?&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Mon, 10 Jul 2006 09:16:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-kill-processes/m-p/3820497#M269938</guid>
      <dc:creator>Manuales</dc:creator>
      <dc:date>2006-07-10T09:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to kill processes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-kill-processes/m-p/3820498#M269939</link>
      <description>Hi (again) Manuales:&lt;BR /&gt;&lt;BR /&gt;I would expect 'dmesg' to contain the *critical* alerts.  HP-UX is trying to help you find why it feels so "sick".&lt;BR /&gt;&lt;BR /&gt;..."If the diaglogd daemon is active, use the logtool utility in stm to determine which I/O subsystem is logging excessive errors"&lt;BR /&gt;&lt;BR /&gt;...means that you could run '(c)stm' [ the Support Tools Manager ] to obtain more detailed diagostic information about the execessive I/O errors.  You don't need to do this, since you already know the reason for the alerts!&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 10 Jul 2006 09:20:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-kill-processes/m-p/3820498#M269939</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-07-10T09:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to kill processes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-kill-processes/m-p/3820499#M269940</link>
      <description>You have a failing disk or controller (or if you are fortunate something as simple as a missing or bad terminator). You should see plenty of messages in /var/adm/syslog/syslog.log that will indicate the failing device and there is a good change that ioscan -fn will display NO_HW.</description>
      <pubDate>Mon, 10 Jul 2006 09:27:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-kill-processes/m-p/3820499#M269940</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-07-10T09:27:06Z</dc:date>
    </item>
  </channel>
</rss>

