vote up 5 vote down star
1

What would be the simplest way to daemonize a python script in Linux ? I need that this works with every flavor of Linux, so it should only use python based tools.

flag

60% accept rate
One note -- PLEASE provide a way to run your program in the foreground, both for debugging and folks who prefer process supervision tools (such as runit [smarden.org/runit] or daemontools [cr.yp.to/daemontools.html]) to run your program as a supervised service rather than a daemon. – Charles Duffy Sep 21 at 18:32
Yes, I agree (I'm using daemontools) – edomaur Sep 21 at 21:34

4 Answers

vote up 13 vote down check

See Stevens and also this lengthy thread on activestate which I found personally to be both mostly incorrect and much to verbose, and I came up with this:

from os import fork, setsid, umask, dup2
from sys import stdin, stdout, stderr

if fork(): exit(0)
umask(0) 
setsid() 
if fork(): exit(0)

stdout.flush()
stderr.flush()
si = file('/dev/null', 'r')
so = file('/dev/null', 'a+')
se = file('/dev/null', 'a+', 0)
dup2(si.fileno(), stdin.fileno())
dup2(so.fileno(), stdout.fileno())
dup2(se.fileno(), stderr.fileno())

If you need to stop that process again, it is required to know the pid, the usual solution to this is pidfiles. Do this if you need one

from os import getpid
outfile = open(pid_file, 'w')
outfile.write('%i' % getpid())
outfile.close()

For security reasons you might consider any of these after demonizing

from os import setuid, setgid, chdir
from pwd import getpwnam
from grp import getgrnam
setuid(getpwnam('someuser').pw_uid)
setgid(getgrnam('somegroup').gr_gid)
chdir('/')

You could also use nohup but that does not work well with python's subprocess module

link|flag
Interesting. How do you start/stop the daemon ? – edomaur Sep 22 '08 at 16:58
After demonizing I write a pidfile – Florian Bösch Sep 22 '08 at 17:00
Okay, so after that I can use a standard init.d script with your examples, it should do the trick. – edomaur Sep 22 '08 at 17:43
Please, also add a os.chdir("/") to the code above. – ΤΖΩΤΖΙΟΥ Sep 23 '08 at 0:21
vote up 3 vote down

nohup

Creating a daemon the Python way

link|flag
Oh, I didn't know "nohup", thx! – edomaur Sep 22 '08 at 16:55
vote up 0 vote down

Use grizzled.os.daemonize:

$ easy_install grizzled

>>> from grizzled.os import daemonize
>>> daemon.daemonize()

To understand how this works or to do it yourself, read the discussion on ActiveState.

link|flag
vote up 1 vote down

If you do not care for actual discussions (which tend to go offtopic and do not offer authoritative response), you can choose some library that will make your tast easier. I'd recomment taking a look at ll-xist, this library contains large amount of life-saving code, like cron jobs helper, daemon framework, and (what is not interesting to you, but is really great) object-oriented XSL (ll-xist itself).

link|flag
That's an interesting library kit, I'll try it. Thanks. – edomaur Sep 22 '08 at 20:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.