Use SSH to start a background process on a remote server, and exit session

后端 未结 4 1332
南方客
南方客 2021-02-02 07:22

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 &\"

相关标签:
4条回答
  • 2021-02-02 07:44

    Well this question is almost 10 years old, but I recently had to launch a very long script (taking several hours to complete) on a remote server and I found a way using the crontab.

    If can edit your user's crontab on the remote server, connect with ssh to the server, edit the crontab and add an entry that will start your script the next minute. Let's say it's 15h03. Add this line :

    4 15 * * * /path/to/your/script.sh
    

    save your crontab, wait a minute for the script to be launched. Then edit again your crontab to remove this entry.

    You can then safely exit ssh, even shut down your computer while the script is running.

    0 讨论(0)
  • 2021-02-02 07:47

    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.

    0 讨论(0)
  • 2021-02-02 07:57

    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

    0 讨论(0)
  • 2021-02-02 08:02

    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.

    0 讨论(0)
提交回复
热议问题