SSH connection - run program -> howto to keep program running when the ssh-connection is closed

前端 未结 3 1742
情话喂你
情话喂你 2021-01-15 23:33

In short: What is the most elegant solution to keep a perl/python/R/etc script/program running on a server (connected via ssh) when the remote server connec

3条回答
  •  温柔的废话
    2021-01-15 23:44

    NOHUP - http://en.wikipedia.org/wiki/Nohup

    ssh your_server
    nohup nice perl your_script &
    exit
    

提交回复
热议问题