Report this

What is the reason for this report?

How to run a server without leaving my pc on? Using putty or otherwise

Posted on June 4, 2017

Hi!

Normally when I want to run some piece of code I just open PuTTy, log into my DigitalOcean server and run my python script. However, it seems to me like I have to keep PuTTy open and can’t turn of my pc. Is there any way I can run a command and actually turn of my pc?

My server runs on Ubuntu 16.04.1 x64 if that matters :)

Thanks



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

@Tunnelvisie

Run your python script in a tmux session like this:

    tmux
    python /path/to/script.py

Then detach from the session using CTRL+B D and turn off your computer if you want. When you come back and want to check the session use tmux a to connect to it again.

More about tmux can be found here

Hope this helps.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.