How do I keep my Django server running even after I close my ssh session?
Meet screen. Connect through ssh, start screen. This open a virtual console emulator on top of the one provided by ssh. Start your server there. Then press Ctrl-a, then d. This detach the screen session, keeping it running in the background. To [R]e-attach to it, use screen -r. If screen is not installed and you … Read more