简体   繁体   中英

How do I keep a Python application running in an EC2 instance?

I have a python application which I uploaded to an EC2 instance as a file named "example.py". I want this code to be running continuously, as it has a while loop that calls a 3rd party Twitter API every minute. If I run "python3 example.py", and close the terminal, the SSH session terminates. Will the python application continue running in that EC2 instance? How can I make that sure? Thanks.

Quick Solution - You run in SSH terminal:

nohup python3 example.py & 

(best if you don't wanna see what is going on later)

or

Best Solution - You create a Screen in SSH terminal:

screen

Then you press ctrl+a+d to detach from it. Then you can close SSH safely. If you want to see what is going on later, you can just:

screen -r

您可以使用nohup这个命令从当前会话断开连接 ,并&在后台运行:

nohup python3 example.py &

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM