0

I am running a process that takes long time to finish on a remote server. The process gets killed when my ssh connection to the remote machine is dropped. Is there a way I can continue running the process even after my ssh connection drops?

ssk
  • 9,045
  • 26
  • 96
  • 169
  • possible duplicate of [Linux: Prevent a background process from being stopped after closing SSH client](http://stackoverflow.com/questions/285015/linux-prevent-a-background-process-from-being-stopped-after-closing-ssh-client) – Eugene Mayevski 'Callback Aug 20 '12 at 05:35

1 Answers1

1

There is another similar question.

The answer provided there was to use the POSIX command nohup to ignore the ssh termination and allow the process to continue running.

Community
  • 1
  • 1
routeburn
  • 1,156
  • 1
  • 12
  • 27