Python Forum
keep running Console Application - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: keep running Console Application (/thread-14938.html)



keep running Console Application - MrJoo - Dec-25-2018

Hi folks,

I have a console Python program script. I upload it on Linux Host cloud.
I need to run it permanently, so I run it using putty by using the command: python /home/MyProj/Main.py

But the command stopped once I close the putty session.


What is the best approach to run a permanent script?


RE: keep running Console Application - metulburr - Dec-25-2018

The way i do it is i use tmux. Then run your program in that, detach from it and exit. Then reattach whn you log back in. The process will continue to run


RE: keep running Console Application - MrJoo - Dec-25-2018

(Dec-25-2018, 07:32 PM)metulburr Wrote: The way i do it is i use tmux. Then run your program in that, detach from it and exit. Then reattach whn you log back in. The process will continue to run


Many thanks, it works fine.
But what Shall I do if I need to turn the script off?

Thanks,

I killed the session using:

tmux kill-session -a


RE: keep running Console Application - metulburr - Dec-25-2018

(Dec-25-2018, 08:21 PM)MrJoo Wrote: But what Shall I do if I need to turn the script off?
You log in, reattach, and ctrl + C to kill