Connecting Tech Pros Worldwide Help | Site Map

Example of signaling and creating a python daemon

David Pratt
Guest
 
Posts: n/a
#1: Sep 15 '05
Hi. I am running a zope server. Zope runs 4 threads and I have a
document processing method that can require minutes to run so I do not
want to run out of threads. A solution to this is to run this process
asynchronously. What I am hoping to do is send a signal to a python
deamon to run a process and then go back to sleep.

I am hoping to find a clear example of:
* sending a signal from a python script to start a python daemon
somewhere on the filesystem
* a python daemon that utilizes the signal to wake up from sleep and
run a method, then go back to sleep.

I have no experience daemonizing a script so this help would be much
appreciated. I have found a couple of scripts googling on creating a
deemon but not work in this way.

Regards,
David
McBooCzech
Guest
 
Posts: n/a
#2: Sep 15 '05

re: Example of signaling and creating a python daemon


--snip--[color=blue]
> I have no experience daemonizing a script so this help would be much
> appreciated. I have found a couple of scripts googling on creating a
> deemon but not work in this way.
>
> Regards,
> David[/color]

Hi, maybe this two link can help:

http://aspn.activestate.com/ASPN/Coo...n/Recipe/66012

http://aspn.activestate.com/ASPN/Coo.../Recipe/278731

Petr Jakes

Closed Thread