How to continuously run a Python script on an EC2

2019-03-12 10:00发布

I've setup an Amazon EC2 server. I have a Python script that is supposed to download large amounts of data from the web onto the server. I can run the script from the terminal through ssh, however very often I loose the ssh connection. When I loose the connection, the script stops.

Is there a method where I tell the script to run from terminal and when I disconnect, the script is still running on the server?

3条回答
戒情不戒烟
2楼-- · 2019-03-12 10:12

You can also use nohup to make your script run in the background or when you have disconnected from your session:

nohup script.py &

The & at the end of the command explicitly tells nohup to run your script in the background.

查看更多
做个烂人
3楼-- · 2019-03-12 10:13

If it just a utility you run ad-hoc, not a service daemon of some kind, i would just run it in screen. Than you can disconnect if you want and open the terminal back up later... Or reconnect the terminal if you get disconnected. It should be in your linux distros package manager. Just search for screen

http://www.gnu.org/software/screen/

查看更多
Emotional °昔
4楼-- · 2019-03-12 10:18

You have a few options.

  • You can add your script to cron to be run regularly.
  • You can run your script manually, and detach+background it using nohup.
  • You can run a tool such as GNU Screen, and detach your terminal and log out, only to continue where you left off later. I use this a lot.
    • For example:
      1. Log in to your machine, run: screen.
      2. Start your script and either just close your terminal or properly detach your session with: Ctrl+A, D, D.
      3. Disconnect from your terminal.
      4. Reconnect at some later time, and run screen -rD. You should see your stuff just as you left it.
  • You can also add your script to /etc/rc.d/ to be invoked on book and always be running.
查看更多
登录 后发表回答