<?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: kill fbackup in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529905#M368121</link>
    <description>You're right Bill, I should have done the kill -15 and followed by -1. Lesson learned. Thanks for explaining. I'll do a reboot.</description>
    <pubDate>Mon, 09 Nov 2009 05:23:05 GMT</pubDate>
    <dc:creator>Dags</dc:creator>
    <dc:date>2009-11-09T05:23:05Z</dc:date>
    <item>
      <title>kill fbackup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529901#M368117</link>
      <description>&lt;!--!*#--&gt;Hi Masters,&lt;BR /&gt;&lt;BR /&gt;Here's what happen, I issued kill -9 to kill fbackup and I think it is now a ghost process, and we can't perform backup anymore. Aside from reboot, is there other way to kill this proccess. I'm using HPUX 11.11 9000/800. Thnaks in advance guys. Sample of ps -ef|grep fbackup:&lt;BR /&gt;&lt;BR /&gt;root  6216     1  0  Nov  7  pts/tk    0:00 /usr/sbin/fbackup -f /dev/rmt/14m -0 -u -v -c /var/adm/fbackupf&lt;BR /&gt;    root  3759     1  0  Nov  7  ?         0:00 /usr/sbin/fbackup -f /dev/rmt/14m -0 -u -v -c /var/adm/fbackupf&lt;BR /&gt;    root 29363  5988  1 10:31:39 pts/11    0:00 grep fbackup&lt;BR /&gt;    root  2000     1  0  Nov  7  ?         0:00 /usr/sbin/fbackup -f /dev/rmt/14m -0 -u -v -c /var/adm/fbackupf&lt;BR /&gt;    root 12701 20575  0  Nov  7  pts/tk    0:00 /usr/sbin/fbackup -f /dev/rmt/14m -0 -u -v -c /var/adm/fbackupf</description>
      <pubDate>Mon, 09 Nov 2009 03:01:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529901#M368117</guid>
      <dc:creator>Dags</dc:creator>
      <dc:date>2009-11-09T03:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: kill fbackup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529902#M368118</link>
      <description>&amp;gt;&amp;gt;root  6216     1  0  Nov  7  pts/tk    0:00 /usr/sbin/fbackup -f /dev/rmt/14m -0 -u -v -c /var/adm/fbackupf&lt;BR /&gt;    root  3759     1  0  Nov  7  ?         0:00 /usr/sbin/fbackup -f /dev/rmt/14m -0 -u -v -c /var/adm/fbackupf&lt;BR /&gt;    root 29363  5988  1 10:31:39 pts/11    0:00 grep fbackup&lt;BR /&gt;    root  2000     1  0  Nov  7  ?         0:00 /usr/sbin/fbackup -f /dev/rmt/14m -0 -u -v -c /var/adm/fbackupf&lt;BR /&gt;    root 12701 20575  0  Nov  7  pts/tk    0:00 /usr/sbin/fbackup -f /dev/rmt/14m -0 -u -v -c /var/adm/fbackupf&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I will start with below&lt;BR /&gt;&lt;BR /&gt;kill -9 3759 29363 2000 12701&lt;BR /&gt;&lt;BR /&gt;if not reboot&lt;BR /&gt;&lt;BR /&gt;"ghost" processes you actually mean "zombie" processes. You can't kill them (because they are already dead and can certainly never respond to a signal which is all a kill is). Zombie's consume no resources (other than a process table slot) and do no real harm.</description>
      <pubDate>Mon, 09 Nov 2009 03:24:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529902#M368118</guid>
      <dc:creator>Johnson Punniyalingam</dc:creator>
      <dc:date>2009-11-09T03:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: kill fbackup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529903#M368119</link>
      <description>Thanks Johnson. I've already done your recommendation. &lt;BR /&gt;&lt;BR /&gt;Any other inputs?</description>
      <pubDate>Mon, 09 Nov 2009 03:35:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529903#M368119</guid>
      <dc:creator>Dags</dc:creator>
      <dc:date>2009-11-09T03:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: kill fbackup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529904#M368120</link>
      <description>The most iumportant rule is to never use kill -9 for any program! Like many sophisticated programs, fbackup uses shared memory and kill -9 will not allow a normal shutdown. So the large amount of shared memory is permanently unuseable until you reboot or figure out the shared memory segment with ipcs. The correct kill signal is kill -15 possibly followed with a kill -1.&lt;BR /&gt; &lt;BR /&gt;I assume you have issued several kill -9 signals and fbackup does not respond. So the program is hung, waiting on some service from the kernel. Your program will not terminate until the condition causing the hang is removed. Normally, I would expect this kind of a problem with a network backup but the above appears to be a tape backup. Check your syslog.log for hardware errors. Also, are you backing up data from a network filesystem (NFS or CIFS?). Or are you using LUNs from a SAN system? Any of these conditions could cause the program to hang while waiting for the kernel to complete the I/O.&lt;BR /&gt; &lt;BR /&gt;There isn't any way to terminate fbackup until it starts running again. Therefore a reboot is required. This will also remove the shared memory segments that wwere orphaned by fbackup.&lt;BR /&gt; &lt;BR /&gt;kill signals actually do not terminate a program. Instead, the signal (like kill -15) is stored in the program's process table and the program will immediately check the signal. A well writen program (like fbackup) will senes the signal and gracefully shutdown. However, kill -9 cannot be sensed or trapped like other signals. kill -9 will forcefully remove the program without allowing any cleanup for files and shared memory. Use it as a very last resort.</description>
      <pubDate>Mon, 09 Nov 2009 04:13:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529904#M368120</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2009-11-09T04:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: kill fbackup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529905#M368121</link>
      <description>You're right Bill, I should have done the kill -15 and followed by -1. Lesson learned. Thanks for explaining. I'll do a reboot.</description>
      <pubDate>Mon, 09 Nov 2009 05:23:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529905#M368121</guid>
      <dc:creator>Dags</dc:creator>
      <dc:date>2009-11-09T05:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: kill fbackup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529906#M368122</link>
      <description>&amp;gt;Johnson: "ghost" processes you actually mean zombie processes. You can't kill them&lt;BR /&gt;&lt;BR /&gt;These are hung processes, not zombies.  And you can kill zombies by killing the zombie master.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Nov 2009 07:50:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529906#M368122</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-11-09T07:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: kill fbackup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529907#M368123</link>
      <description>Noted Many Thanks &amp;lt;&lt;DENNIS&gt;&amp;gt;&lt;/DENNIS&gt;</description>
      <pubDate>Mon, 09 Nov 2009 08:58:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kill-fbackup/m-p/4529907#M368123</guid>
      <dc:creator>Johnson Punniyalingam</dc:creator>
      <dc:date>2009-11-09T08:58:14Z</dc:date>
    </item>
  </channel>
</rss>

