0

I got an account from my professor for our universities CUDA server for running some tests.

I am connecting via ssh over terminal. The thing is, as I close the terminal the server also seems to kill the running script. As I reconnect it has stopped.

No it is not possible that the script already terminated since those test runs should take a few hours even on those machine..

Can anybody help me here?

OS: Linux cuda01 3.13-1-amd64 #1 SMP Debian 3.13.7-1 (2014-03-25) x86_64 GNU/Linux

1 Answers1

1

This is normal behavior. When you close the terminal, the SSH session terminates, killing all child processes. You need to use something like tmux or screen on the server to fork and create a persistent shell, which will continue to run after the ssh session terminates, and can be reconnected to when you log in again.

Darth Android
  • 38,658