Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a script I can run locally to remotely start a server:

#!/bin/bash
ssh user@host.com <<EOF
  nohup /path/to/run.sh &
EOF
echo 'done'

After running nohup, it hangs. I have to hit ctrl-c to exit the script.

I've tried adding an explicit exit at the end of the here doc and using "-t" argument for ssh. Neither works. How do I make this script exit immediately?

EDIT: The client is OSX 10.6, server is Ubuntu.

share|improve this question
2  
What SSH client are you using? The -t option should work unless the client is doing something weird. – Ben.Vineyard Aug 16 '11 at 21:52
Oops should have mentioned this is on OSX, standard ssh client. Updated the question. – mahemoff Aug 16 '11 at 22:04

3 Answers

up vote 4 down vote accepted

I think the problem is that nohup can't redirect output when you come in from ssh, it only redirects to nohup.out when it thinks its connected to a terminal, and I the stdin override you have will prevent that, even with -t.

A workaround might be to redirect the output yourself, then the ssh client can disconnect - it's not waiting for the stream to close. Something like:

nohup /path/to/run.sh > run.log &

(This worked for me in a simple test connecting to an Ubuntu server from an OS X client.)

share|improve this answer
That worked great, thanks. I actually had tried redirecting INPUT from /dev/null, but didn't think of trying with output! (I've tested this does work fine redirecting to /dev/null too, ie nohup /path/to/run.sh > /dev/null & ) – mahemoff Aug 17 '11 at 19:31

The problem might be that ...

... ssh is respecting the POSIX standard when not closing the session 
if a process is still attached to the tty.

Therefore a solution might be to detach the stdin of the nohup command from the tty:

nohup /path/to/run.sh </dev/null &

See: SSH Hangs On Exit When Using nohup

Yet another approach might be to use ssh -t -t to force pseudo-tty allocation even if stdin isn't a terminal.

man ssh | less -Ip 'multiple -t'

ssh -t -t user@host.com <<EOF
  nohup /path/to/run.sh &
EOF

See: BASH spawn subshell for SSH and continue with program flow

share|improve this answer
Thanks. The first one didn't work, same result as before. -t -t did work (-t -t), but gave the error "tcgetattr: Inappropriate ioctl for device", which makes sense in light of what the double -t does. I searched around for a way to remove the error (I'd rather do this as cleanly as possible) and couldn't see how to do it with a heredoc. Turns out Martin Clayton's answer solves this, so I left it there. – mahemoff Aug 17 '11 at 19:26

Have you tried exit 0 at the end?

share|improve this answer
Yes, tried that and didn't work. – mahemoff Aug 17 '11 at 19:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.