0
votes
4answers
48 views
How to mimic DropBox functionality with Ruby script?
I would like to upload documents to GoogleDocs every time the OS hears that a file was added/dragged/saved in a designated folder, just the way DropBox uploads a file when you save …
0
votes
2answers
87 views
Why does my Python daemon hog all my CPU while sleeping?
I'm using this recipe: http://code.activestate.com/recipes/278731/ on an Ubuntu server.
I make a daemon instance like this:
class MyDaemon(Daemon):
def run(self):
whi …
1
vote
3answers
60 views
Daemon dies unexpectedly
I have a python script, which I daemonise using this code
def daemonise():
from os import fork, setsid, umask, dup2
from sys import stdin, stdout, …
1
vote
3answers
104 views
Threads in a J2EE application
I have a J2EE application that has two components: First is a service that scrapes some information from internet and fills it into database. Second is a web interface (deployed on …
2
votes
1answer
33 views
stateful processes (daemons?) in Tomcat?
I'm not exactly sure what question to ask here since I don't know the vocabulary...
Tomcat servlets (and any server for that matter) work nicely if they are stateless and respond …
2
votes
2answers
120 views
Executor and Daemon in Java
Hi,
I have a MyThread object which I instantiate when my app is loaded through the server, I mark it as a Daemon thread and then call start() on it. The thread is meant to sit and …
0
votes
7answers
211 views
Is it a bad idea to write a multithreaded TCP server daemon in Perl?
Is it a bad idea to write multithreaded programs (specifically, TCP server daemons) in Perl?
0
votes
1answer
48 views
developing a osx deamon that runs before user login using xcode.
Hi I am trying to develop a daemon using objective-C/xcode.
I am new to mac world and can I get an idea of what project template to choose in xcode and how to do it.
Can I get a …
0
votes
3answers
187 views
delayed_job not picking up the rails environment
Followed this question about delayed_job and monit
Its working on my development machine. But whenever I try to run on production, it just dies with following on delayed_job.log
…
1
vote
6answers
222 views
How to implement Daemon process for background task in iphone sdk 3.0 ?
Hi
Like qik.com or ustream.com , when they upload content from iphone to server , it works via daemon . So even when out of the app with exit , the task is still on with backgro …
2
votes
6answers
267 views
Error while using multiprocessing module in a python daemon
I'm getting the following error when using the multiprocessing module within a python daemon process (using python-daemon):
Traceback (most recent call last):
File "/usr/local/ …
0
votes
1answer
94 views
How to tell the status of a Linux Daemon
Hi,
We have a Linux Daemon in c and a bash script to start it. The daemon sometimes fail to start because of some configuration file errors but the script reports the daemon was s …
2
votes
1answer
71 views
What difference it makes when I set python thread as a Deamon
What difference it makes when I set python thread as a Deamon, using thread.setDaemon(True) ?
3
votes
3answers
319 views
Tool for creating a Java daemon service on Linux
What is the best way to create a java application that can be run using ‘service’ on Linux? I was going to use the JSW available here, but cannot use the licence on that (licence i …
2
votes
2answers
409 views
Best practices creating Java service or daemon scripts
I'm looking for a tool to run java server processes as daemon services in Linux (and potentially on Windows and other OS's). I'm looking for the best practices when it comes to how …
