Okay I have looked at python-daemon, and also at various other daemon related code recipes. Are there any 'hello world' tutorials out there that can help me get started using a python based daemonized process?
|
feedback
|
|
The PEP contains several examples, the simplest one of which is:
This seems as straightforward as it gets. If there's something that's unclear, please pose specific questions. | |||
feedback
|
|
Using subprocess.Popen, you can launch another process that will survive your current process... In a python console run :
Kill your console, look at existing processes, sleep is alive... | |||||||
feedback
|
daemontools,launchd, orupstart. They even handle important things like logging for you, and make sure your process stays running. – habnabit Oct 6 '11 at 14:59