<?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: Signal SIGHUP in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174957#M718138</link>
    <description>Elmar&lt;BR /&gt;&lt;BR /&gt;Exactly: if I set TMOUT=600, then run a process in the background ("myprogram &amp;amp;"),&lt;BR /&gt;the program will terminate when the parent interactive session is killed after the timeout is exceeded.&lt;BR /&gt;You circumvent this by using NOHUP to stop a hangup of the parent killing the background child:&lt;BR /&gt;"nohup myprogram &amp;amp;".</description>
    <pubDate>Tue, 27 Jan 2004 07:51:04 GMT</pubDate>
    <dc:creator>Jakes Louw</dc:creator>
    <dc:date>2004-01-27T07:51:04Z</dc:date>
    <item>
      <title>Signal SIGHUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174951#M718132</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I have some applications running on HPUX11i and one of them, at certain point, stopped because it was signalled with SIGHUP. I do not have any application sending that signal so it has to be signalled by the OS.&lt;BR /&gt;&lt;BR /&gt;Does anybody know under which conditions the system is throwing this signal?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;Regards, Alberto</description>
      <pubDate>Tue, 27 Jan 2004 06:59:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174951#M718132</guid>
      <dc:creator>Alberto Delgado</dc:creator>
      <dc:date>2004-01-27T06:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: Signal SIGHUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174952#M718133</link>
      <description>sighup == signal hangup.&lt;BR /&gt;&lt;BR /&gt;This is a signal that is sent when a terminal connection is closed. So it might be the process was linked to a terminal or login session that was closed without stopping the proces first.&lt;BR /&gt;&lt;BR /&gt;But there are lots of other reasons a sighup is sent to a process. For instance, most start/stop scripts use a sighup to 'gently' signal a proces it should stop, before doing it drasticaly with a sigkill (-9).&lt;BR /&gt;&lt;BR /&gt;Do you get the message a lot or sporadic?</description>
      <pubDate>Tue, 27 Jan 2004 07:06:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174952#M718133</guid>
      <dc:creator>Elmar P. Kolkman</dc:creator>
      <dc:date>2004-01-27T07:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: Signal SIGHUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174953#M718134</link>
      <description>Elmar is correct regarding the terminal nature of SIGHUP (It actually comes from  hang up,as in hanging up the telephone line).  However, SIGTERM is usually used to ask a process to quit nicely. &lt;BR /&gt; &lt;BR /&gt;I do not think the system will ever send a SIGHUP except as mentioned by Elmar above.  Some daemons, such as cron will trap a SIGHUP and re-read their configurations on receipt of the signal.  The default action, however, is to quit.  My guess would be to look at the "restart" option within the system boot script for this application</description>
      <pubDate>Tue, 27 Jan 2004 07:12:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174953#M718134</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2004-01-27T07:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: Signal SIGHUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174954#M718135</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;The application running was associated to a terminal and probably the terminal crashed and thats why it got that signal as you mentioned.&lt;BR /&gt;&lt;BR /&gt;This happen only once but we are trying to dig wherther there is something more important associated to this.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot!&lt;BR /&gt;Best regards, Alberto</description>
      <pubDate>Tue, 27 Jan 2004 07:23:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174954#M718135</guid>
      <dc:creator>Alberto Delgado</dc:creator>
      <dc:date>2004-01-27T07:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Signal SIGHUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174955#M718136</link>
      <description>If you have set the environment variable TMOUT, as far as I know this will SIGHUP when the timeout period is exceeded.</description>
      <pubDate>Tue, 27 Jan 2004 07:39:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174955#M718136</guid>
      <dc:creator>Jakes Louw</dc:creator>
      <dc:date>2004-01-27T07:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: Signal SIGHUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174956#M718137</link>
      <description>But only if no proces is running in the foreground. I've been in environments where they used that too, and if I wanted to keep online, I started top when I was not active for a while.</description>
      <pubDate>Tue, 27 Jan 2004 07:46:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174956#M718137</guid>
      <dc:creator>Elmar P. Kolkman</dc:creator>
      <dc:date>2004-01-27T07:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Signal SIGHUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174957#M718138</link>
      <description>Elmar&lt;BR /&gt;&lt;BR /&gt;Exactly: if I set TMOUT=600, then run a process in the background ("myprogram &amp;amp;"),&lt;BR /&gt;the program will terminate when the parent interactive session is killed after the timeout is exceeded.&lt;BR /&gt;You circumvent this by using NOHUP to stop a hangup of the parent killing the background child:&lt;BR /&gt;"nohup myprogram &amp;amp;".</description>
      <pubDate>Tue, 27 Jan 2004 07:51:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/signal-sighup/m-p/3174957#M718138</guid>
      <dc:creator>Jakes Louw</dc:creator>
      <dc:date>2004-01-27T07:51:04Z</dc:date>
    </item>
  </channel>
</rss>

