The python-daemon tag has no wiki summary.
9
votes
2answers
322 views
What is the de facto library for creating Python Daemons
I am attempting to use the python-daemon library which seemed to me to be the safest way to create a Daemon without forgetting anything. The documentation is quite poor, being just PEP 3143. The ...
3
votes
1answer
156 views
How to find the find reason for a python daemon process dying?
I've got a daemon implemented in python using the python-daemon library.
The daemon appears to periodically die (or is killed) however, where periodically varies from one day to several months.
I've ...
2
votes
3answers
64 views
accessing Dictionary from different programs
I am creating dictionary out of a large file.
def make_dic():
big_dic={}
for foo in open(bar):
key,value=do_something(foo)
big_dic[key]=value
def main():
make_dic() ...
2
votes
0answers
50 views
python-daemon context fails to start when a stale PID file is present
I'm using python-daemon, and having the problem that when I kill -9 a process, it leaves a pidfile behind (ok) and the next time I run my program it doesn't work unless I have already removed the ...
2
votes
3answers
237 views
Can I have some code constantly run inside Django like a daemon
I'm using mod_wsgi to serve a django site through Apache. I also have some Python code that runs as a background process (dameon?). It keeps polling a server and inserts data into one of the Django ...
2
votes
2answers
311 views
remotely start Python program in background
I need to use fabfile to remotely start some program in remote boxes from time to time, and get the results. Since the program takes a long while to finish, I wish to make it run in background and so ...
1
vote
1answer
61 views
Python Daemon Process Memory Management
I'm currently writing a Python daemon process that monitors a log file in realtime and updates entries in a Postgresql database based on their results. The process only cares about a unique key that ...
1
vote
2answers
134 views
Using python, daemonizing a process
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 ...
0
votes
1answer
319 views
python crontab alternative - APScheduler & python-daemon
I'm having trouble using
python-daemon 1.6 getting along with APScheduler to manage a list of tasks.
(The scheduler needs to run them periodically at a specific chosen times - seconds resolution)
...
0
votes
0answers
56 views
Alternative for python-daemon on Windows
I'm trying to use a python library (python_openid) which depends upon python-daemon. The latter does not appear to work on Windows.
What alternatives have I got (short of installing Linux)?
0
votes
1answer
282 views
Can I run pika's connection.ioloop.start() in a daemon?
I'm trying to set up a worker daemon for processing messages from rabbitmq. I'm using pika and its SelectConnection. The code works fine if I don't run it as a daemon. I can use
py worker.py
...