I have written a module in Python and want it to run continuously once started and need to stop it when I need to update other modules. I will likely be using monit to restart it, if module has crashed or is otherwise not running.
I was going through different techniques like Daemon, Upstart and many others.
Which is the best way to go so that I use that approach through out my all new modules to keep running them forever?
From your mention of Upstart I will assume that this question is for a service being run on an Ubuntu server.
On an Ubuntu server an upstart job is really the simplest and most convenient option for creating an always on service that starts up at the right time and can be stopped or reloaded with familiar commands.
To create an upstart service you need to add a single file to
/etc/init
. Called<service-name>.conf
. An example script looks like this:This means that everytime the machine is started it will start the
chat.py
program. If it dies for whatever reason it will restart it. You don't have to worry about double forking or otherwise daemonizing your code. That's handled for you by upstart.If you want to stop or start your process you can do so with
The name
chat
is automatically found from the name of the.conf
file inside/etc/init
I'm only covering the basics of upstart here. There are lots of other features to make it even more useful. All available by running
man upstart
.This method is much more convenient, than writing your own daemonization code. A 4-8 line config file for a built in Ubuntu component is much less error prone than making your code safely double fork and then having another process monitor it to make sure it doesn't go away.
Monit is a bit of a red herring. If you want downtime alerts you will need to run a monitoring program on a separate server anyway. Rely on upstart to keep the process always running on a server. Then have a different service that makes sure the server is actually running. Downtime happens for many different reasons. A process running on the same server will tell you precisely nothing if the server itself goes down. You need a separate machine (or a third party provider like pingdom) to alert you about that condition.
I used old-style initscript with start-stop-daemon utility.Look at skel in /etc/init.d
You could check out supervisor. What it is capable of is starting a process at system startup, and then keeping it alive until shutdown.
The simplest configuration file would be:
Then you could link it to
/etc/supervisord/conf.d
, runsudo supervisorctl
to enter management console of supervisor, type inreread
so that supervisor notices new config entry andupdate
to display new programs on thestatus
list.To start/restart/stop a program you could execute
sudo supervisorctl start/restart/stop my_script
.