Tagged Questions

Discussions on background processes, programs or tasks running in the background on multi-tasking operating systems, often refereed to daemon processes.

learn more… | top users | synonyms

70
votes
10answers
22k views

A cron job for rails: best practices?

What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?
44
votes
6answers
15k views

How do you create a daemon in Python?

Searching on Google reveals x2 code snippets. The first result is to this code recipe which has a lot of documentation and explanation, along with some useful discussion underneath. However, another ...
30
votes
7answers
6k views

How do I code a Mono Daemon

I'm trying to write a Mono C# daemon for linux. I'd like to do a starts and stops of it when its done processing instead of just killing the process. Does anyone have any examples of this? Edit: I ...
29
votes
10answers
5k views

How do I daemonize an arbitrary script in unix?

I'd like a daemonizer that can turn an arbitrary, generic script or command into a daemon. There are two common cases I'd like to deal with: I have a script that should run forever. If it ever ...
22
votes
7answers
4k views

Communicating with a running python daemon

I wrote a small Python application that runs as a daemon. It utilizes threading and queues. I'm looking for general approaches to altering this application so that I can communicate with it while ...
19
votes
9answers
4k views

Logging in Linux

So I have a daemon running on a linux system, and I want to have a record of its activities: a log. The question is, what is the "best" way to accomplish this? My first idea is to simply open a file ...
18
votes
5answers
17k views

Starting a background process in python

I'm trying to port a shell script to the much more readable python version. The original shell script starts several processes (utilities, monitors, etc.) in the background with "&". How can I ...
15
votes
3answers
13k views

How can I run a Perl script as a system daemon in linux?

What's a simple way to get a Perl script to run as a daemon in linux? Currently, this is on CentOS. I'd want it to start up with the system and shutdown with the system, so some /etc/rc.d/init.d ...
15
votes
7answers
8k views

java background/daemon/service cross platform best pratices

I am looking for the best way to make my desktop java program run in the background (daemon/service?) across most platforms (Windows, Mac OS, Linux [Ubuntu in particular]). By "best way" I am hoping ...
13
votes
4answers
6k views

Node.js as a background service

I want my node.js server to run in the background, ie: when I close my terminal I want my server to keep running. I've googled this and came up with this tut, however it doesn't work as intended. So ...
13
votes
1answer
3k views

Create a daemon with double-fork in Ruby

What is the proper way to create a well-behaved Unix or Linux daemon in Ruby? What is the definition of a well-behaved daemon anyway, and how would one write such a program in Ruby?
13
votes
3answers
5k views

Reference for proper handling of PID file on Unix

Where can I find a well-respected reference that details the proper handling of PID files on Unix? On Unix operating systems, it is common practice to “lock” a program (often a daemon) by use of a ...
13
votes
6answers
6k views

Choosing and deploying a comet server

I want to push data to the browser over HTTP without killing my django/python application. I decided to use a comet server, to proxy requests between my application and the client (though I still ...
13
votes
3answers
2k views

Best Method to run a Java Application as a *nix Daemon or Windows Service?

I am looking for the best method to run a Java Application as a *NIX daemon or a Windows Service. I've looked in to the Java Service Wrapper, the Apache Commons project 'jsvc', and the Apache Commons ...
12
votes
7answers
727 views

Calling System.gc( ) explicitly?

It is said that we cannot force the garbage collection process in java. It's after all, a daemon thread. But still sometimes, why we call the System.gc( ); function explicitly ? Is it worth calling ...
11
votes
4answers
256 views

Program hangs with no output

I've been poring over this program for ages, and have no idea why it doesn't work. I'm reasonably sure it's doing everything right but instead of actually working it just hangs indefinitely after ...
11
votes
4answers
3k views

How to IPC between PHP clients and a C Daemon Server?

and thanks for taking a look at the question. The background I have several machines that continuously spawn multiple (up to 300) PHP console scripts in a very short time frame. These scripts run ...
11
votes
16answers
2k views

Is it wise to use PHP for a daemon?

I wish to create a background process and I have been told these are usually written in C or something of that sort. I have recently found out PHP can be used to create a daemon and I was hoping to ...
10
votes
3answers
2k views

Python-daemon doesn't kill its kids

When using python-daemon, I'm creating subprocesses likeso: import multiprocessing class Worker(multiprocessing.Process): def __init__(self, queue): self.queue = queue # we wait for things ...
9
votes
2answers
137 views

Why MUST detach from tty when writing a linux daemon?

When i tried to write a daemon under linux using C, i was told i should add following code after fork code block: /* Preparations */ ... /* Fork a new process */ pid_t cpid = fork(); if (cpid == ...
9
votes
3answers
1k views

Custom Daemon with Rails 3

I'm trying to create a custom daemon that loads up the Rails environment. My environment is as follows: ruby-1.9.2-p180 rails 3.0.5 I did the following: -Installed the daemons gem -Installed ...
9
votes
2answers
293 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 ...
9
votes
2answers
3k views

Is it possible to set up MongoDB in a shared hosting?

I'm using GoDaddy and would like to have MongoDB for my pet project.. but I don't really think its possible, since it has to be running the Daemon... but.. it doesn't hurt to ask, is there a way?
9
votes
4answers
4k views

What's the difference between nohup and a daemon?

What are the implications of running a script as a daemon versus using nohup? I know what the difference is in terms of forking processes etc., but what impact does that have on my script?
9
votes
8answers
8k views

How to Daemonize a Java Program?

I have a Java program that I'd like to daemonize on a linux system. In other words, I want to start running it in a shell and have it continue running after I've logged out. I also want to be able to ...
8
votes
14answers
1k views

Scalable, Delayed PHP Processing

I'm working on an online PHP application that has a need for delayed PHP event. Basically I need to be able to execute arbitrary PHP code x many seconds (but it could be days) after the initial hit to ...
8
votes
4answers
1k views

What C++ library to use to write a cross-platform service/daemon?

I wonder what library would ease the development of a cross-platform service/daemon ? (C/C++) I'm targeting: Windows, Linux and OS X. Requirements: network operations and serial port communication. ...
8
votes
12answers
4k views

C or C++ for Linux/UNIX daemon programming?

The topic basically says it all. I want to go more into writing daemons for Linux/UNIX systems and I want things to be fast and stable. Everything I look at seems to be written in C, however, some new ...
8
votes
4answers
1k views

How do I implement a simple cross platform Python daemon?

I would like to have my Python program run in the background as a daemon, on either Windows or Unix. I see that the python-daemon package is for Unix only; is there an alternative for cross platform? ...
8
votes
4answers
3k views

PHP Daemon/worker environment

Problem: I want to implement several php-worker processes who are listening on a MQ-server queue for asynchronous jobs. The problem now is that simply running this processes as daemons on a server ...
8
votes
5answers
2k views

What would be the simplest way to daemonize a python script in Linux?

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.
7
votes
1answer
102 views

Check what a running process is doing

Is there a way on Linux to check what a running Python daemon process is doing? That is, without instrumenting the code and without terminating it? Preferably I'd like to get the name of the module ...
7
votes
2answers
296 views

Java daemon deployment infrastructure

Is there any deployment platforms for Java daemons? We have glassfish, geronimo etc. for web-application deployment, but if I have simple Spring based application which is processing messages from ...
7
votes
6answers
6k views

Run php script as daemon process

I need to run a php script as daemon process (wait for instructions and do stuff). cron job will not do it for me because actions need to be taken as soon as instruction arrives. I know PHP is not ...
7
votes
6answers
448 views

Seriously speeding up PHP?

I've been writing PHP for years, and have used every framework under the sun, but one thing has always bugged me... and that's that the whole bloody thing has to be interpreted and executed every time ...
7
votes
8answers
4k views

What's the best way to keep a PHP script running as a daemon?

What is the best way to keep a PHP script running as a daemon, and what's the best way to check if needs restarting. I have some scripts that need to run 24/7 and for the most part I can run them ...
6
votes
2answers
707 views

C# equivalent to Java's Thread.setDaemon?

How do I set a thread to a daemon thread in C#?
6
votes
6answers
692 views

Linux daemonize

I am writing a linux daemon . I found two ways to do it. Daemonize your process by calling fork and setting sid. Running your program with & Which is the right way to do it
6
votes
1answer
726 views

Build a ruby daemon that integrates my rails environement

I need to build a ruby daemon that will use the freeswitcher eventmachine library for freeswitch. Since few days I as looking the web for the best solution to build a ruby daemon that will integrate ...
6
votes
4answers
1k views

How to use the cachegrind output to optimize the application

I need to improve the throughput of the system. The usual cycle of optimization has been done and we have already achieved 1.5X better throughput. I am now beginning to wonder if I can utilize the ...
5
votes
3answers
126 views

How to run own daemon processes with Django?

In my Django project I have to do repeatedly some processing in the background. This processing needs access to Django stuff, so I put it into Django's commands and run it as cronjob. Right now I ...
5
votes
5answers
235 views

Run resque in background

I have a working rails app with a resque queue system which works very well. However, I lack a good way of actually demonizing the resque workers. I can start them just fine by going rake resque:work ...
5
votes
1answer
324 views

Forking in NodeJS

I'm a little bit confused as to how to create daemons in NodeJS I've created daemons in C before that call fork() that continue execution from where the call was made in a child process allowing the ...
5
votes
1answer
472 views

.NET Service to Linux Daemon

I am writing a portable service/daemon using .NET 3.5, my windows service is running, but I was wondering about the mono port... Mono-service is what I am looking for if I understand correctly. How ...
5
votes
1answer
780 views

how to make a process daemon

I am trying to understand how can I make my program a daemon.So some things which I came across are In general, a program performs the following steps to become a daemon: Call fork( ). In the ...
5
votes
1answer
4k views

Python script as linux service/daemon

Hallo, I'm trying to let a python script run as service (daemon) on (ubuntu) linux. On the web there exist several solutions like: http://pypi.python.org/pypi/python-daemon/ A well-behaved Unix ...
5
votes
3answers
402 views

Working implementation of daemon in Python

Does anyone know of a working and well documented implementation of a daemon using python? Please post a link here if you know of a project that fits these two requirements.
5
votes
3answers
476 views

Emacs: GUI with emacs --daemon not loading fonts correctly

I set up an emacs --daemon in order to startup emacs faster. I like especially the GUI version of emacs, so I do emacsclient -c to open a new emacs frame. The problem is that I have changed my ...
5
votes
5answers
1k views

Java running as a Unix service

I have build a little daemon in Java and I would like to run it as a service under Unix (e.g. Debian 5). I have read, that there is a possibility of using a Java wrapper - but isn't there any other ...
5
votes
1answer
356 views

New to Java EE; architecture suggestions for a service/daemon?

I am brand new to the Java EE world. As an exercise to try and familiarize myself with Java EE, I'm trying to create a tiered web-app, but I'm getting a little stuck on what the best way is to spin up ...

1 2 3 4 5 12