Reputation: 14404
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?
Upvotes: 27
Views: 20750
Reputation: 1
nohup
runs the given command with hangup signals ignored, so that the command can continue running in the background after you log out.
Syntax:
nohup Command [Arg]...
Example:
nohup example.py
nohup rasa run
Also, you can run scripts continuously using the cron
command.
For more:
Upvotes: 0
Reputation: 6406
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.
Upvotes: 14
Reputation: 20982
You have a few options.
cron
to be run regularly.nohup
.screen
.screen -rD
. You should see your stuff just as you left it./etc/rc.d/
to be invoked on book and always be running.Upvotes: 45
Reputation: 19315
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/
Upvotes: 1