| Date: | Sat, 20 Dec 2008 15:01:50 +0200 |
| Reply-To: | jake <jake@MOTO.HU> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | jake <jake@MOTO.HU> |
| Organization: | A noiseless patient Spider |
| Subject: | Re: sas ftp transfer hangup |
|
| Content-Type: | text/plain; format=flowed; charset="Windows-1252";
reply-type=response |
tom wrote:
> ERROR: System is Terminating Due to Hang Up Signal (SIGHUP)
perhaps you can try to run the sas terminal session via the command nohup sas
ie. if you currently send this command to the SSH terminal
sas yourjobname.sas
change it to
nohup sas yourjobname.sas &
note the use of "&" at the end of the command string
"...'nohup [command] &' -- & sign makes sure that the thread is detached and goes into
the background so your closure of ssh session does not kill nohup execution..."
I read this suggestion from
https://www.linuxquestions.org/questions/linux-newbie-8/nohup-not-preventing-jobs-from-getting-killed-269289/
|