Use SSH to start a background process on a remote

2019-03-11 15:56发布

问题:

I am using SSH to start a background process on a remote server. This is what I have at the moment:

ssh remote_user@server.com "nohup process &"

This works, in that the process does start. But the SSH session itself does not end until I hit Ctr-C.

When I hit Ctr-C, the remote process continues to run in the background.

I would like to place the ssh command in a script that I can run locally, so I would like the ssh session to exit automatically once the remote process has started.

Is there a way to make this happen?

回答1:

The "-f" option to ssh tells ssh to run the remote command in the background and to return immediately. E.g.,

ssh -f user@host "echo foo; sleep 5; echo bar"

If you type the above, you will get your shell prompt back immediately, you will then see "foo" output. Five seconds later you will then see "bar" output. In the meantime, you could have been using the shell.



回答2:

When using nohup, make sure you also redirect stdin, stdout and stderr:

ssh user@server 'DISPLAY=:0 nohup xeyes < /dev/null > std.out 2> std.err &'

In this way you will be completely detached from the remote process. Be carefull with using ssh -f user@host... since that will only put the ssh process in the background on the calling side. You can verify this by running a ps -aux | grep ssh on the calling machine and this will show you that the ssh call is still active, but just put in the background.

In my example above I use DISPLAY=:0 since xeyes is an X11 program and I want it started on the remote machine.



回答3:

You could use screen to run your process on this screen, detach from screen Ctrl-a :detach and exit your current session without problem. Then you can reconnect to SSH and attach to this screen again to continue with your task or check if is finished.

Or you can send the command to an already running screen. Your local script should look like this:

ssh remote_user@server.com
screen -dmS new_screen sh
screen -S new_screen -p 0 -X stuff $'nohup process \n'
exit    

For more info see this tutorial