<?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 System is Terminating Due to Hang Up Signal (SIGHUP) in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416437#M26791</link>
    <description>&lt;P&gt;One of the batch Job failed and restarted again and got error like ERROR: System is Terminating Due to Hang Up Signal (SIGHUP)).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can any one please help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Mon, 27 Nov 2017 15:37:41 GMT</pubDate>
    <dc:creator>ravicapg</dc:creator>
    <dc:date>2017-11-27T15:37:41Z</dc:date>
    <item>
      <title>System is Terminating Due to Hang Up Signal (SIGHUP)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416437#M26791</link>
      <description>&lt;P&gt;One of the batch Job failed and restarted again and got error like ERROR: System is Terminating Due to Hang Up Signal (SIGHUP)).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can any one please help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 15:37:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416437#M26791</guid>
      <dc:creator>ravicapg</dc:creator>
      <dc:date>2017-11-27T15:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: System is Terminating Due to Hang Up Signal (SIGHUP)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416441#M26792</link>
      <description>Someone / something probably issued a kill -15 (or 9) against the UNIX&lt;BR /&gt;process that ran your batch job. Does your UNIX environment have any usage&lt;BR /&gt;limitations that could maybe trigger the OS to kill your job ?&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Nov 2017 15:47:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416441#M26792</guid>
      <dc:creator>nhvdwalt</dc:creator>
      <dc:date>2017-11-27T15:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: System is Terminating Due to Hang Up Signal (SIGHUP)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416451#M26793</link>
      <description>&lt;P&gt;Actually, SIGHUP is signal 1. It is usually issued when a terminal connection breaks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your scheduler runs from a remote server, it connects to the SAS server via ssh and then issues commands. If the ssh connection drops, the SAS job will receive a SIGHUP (because the connection was "hung up" like a telephone) and terminate gracefully (writing the reason to the log). The scheduler will probably handle this as an internal error and restart the batch job.&lt;/P&gt;
&lt;P&gt;If you started the batch job via console login, and either killed the telnet/PuTTY client while the job was running, or had a network outage, or ran into some timeout (eg your PC went into standby), then the result is more or less the same.&lt;/P&gt;
&lt;P&gt;To prevent such termination, use the nohup wrapper and put the process into the background:&lt;/P&gt;
&lt;PRE&gt;nohup sasbatch program.sas&amp;amp;&lt;/PRE&gt;
&lt;P&gt;Mind that a broken connection will still be registered as an error condition by a scheduler, so don't use nohup there.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 16:06:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416451#M26793</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-27T16:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: System is Terminating Due to Hang Up Signal (SIGHUP)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416480#M26794</link>
      <description>&lt;P&gt;Thanks for quick reply. No one killed job. Could you please explain below variable values and uses.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;core file size (blocks, -c) 0&lt;BR /&gt;data seg size (kbytes, -d) unlimited&lt;BR /&gt;scheduling priority (-e) 0&lt;BR /&gt;file size (blocks, -f) unlimited&lt;BR /&gt;pending signals (-i) 1032768&lt;BR /&gt;max locked memory (kbytes, -l) 64&lt;BR /&gt;max memory size (kbytes, -m) unlimited&lt;BR /&gt;open files (-n) 350000&lt;BR /&gt;pipe size (512 bytes, -p) 8&lt;BR /&gt;POSIX message queues (bytes, -q) 819200&lt;BR /&gt;real-time priority (-r) 0&lt;BR /&gt;stack size (kbytes, -s) 10240&lt;BR /&gt;cpu time (seconds, -t) unlimited&lt;BR /&gt;max user processes (-u) 100000&lt;BR /&gt;virtual memory (kbytes, -v) unlimited&lt;BR /&gt;file locks (-x) unlimited&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 18:26:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416480#M26794</guid>
      <dc:creator>ravicapg</dc:creator>
      <dc:date>2017-11-27T18:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: System is Terminating Due to Hang Up Signal (SIGHUP)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416481#M26795</link>
      <description>&lt;P&gt;Thanks for reply Kurt,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to know if the specific job hangs up from long time? the job not restarted after&amp;nbsp;&lt;SPAN&gt;receive a SIGHUP&amp;nbsp;message. do we want to restart the job again when see like&amp;nbsp;&amp;nbsp;SIGHUP&amp;nbsp; ERROR.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Ravi Inturi&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 18:32:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416481#M26795</guid>
      <dc:creator>ravicapg</dc:creator>
      <dc:date>2017-11-27T18:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: System is Terminating Due to Hang Up Signal (SIGHUP)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416517#M26798</link>
      <description>&lt;P&gt;In your first post you said "and restarted again". How was the job restarted?&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/61829"&gt;@ravicapg&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Thanks for reply Kurt,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to know if the specific job hangs up from long time? the job not restarted after&amp;nbsp;&lt;SPAN&gt;receive a SIGHUP&amp;nbsp;message. do we want to restart the job again when see like&amp;nbsp;&amp;nbsp;SIGHUP&amp;nbsp; ERROR.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Ravi Inturi&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 22:19:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416517#M26798</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-27T22:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: System is Terminating Due to Hang Up Signal (SIGHUP)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416559#M26800</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;, this is a good explanation.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 04:09:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/System-is-Terminating-Due-to-Hang-Up-Signal-SIGHUP/m-p/416559#M26800</guid>
      <dc:creator>nhvdwalt</dc:creator>
      <dc:date>2017-11-28T04:09:45Z</dc:date>
    </item>
  </channel>
</rss>

