A daemon is a process or program that runs in the background (IE requiring no user interaction) on a multi-tasking operating systems.

learn more… | top users | synonyms

150
votes
13answers
42k views

A cron job for rails: best practices?

What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?
85
votes
7answers
48k 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 ...
48
votes
8answers
34k 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 ...
46
votes
11answers
11k 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 ...
43
votes
6answers
43k 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 ...
37
votes
7answers
10k 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 ...
32
votes
4answers
12k 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 ...
28
votes
7answers
7k 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 ...
24
votes
1answer
14k 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 ...
23
votes
9answers
10k 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 ...
23
votes
9answers
21k 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 ...
23
votes
3answers
25k 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 ...
20
votes
8answers
20k 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 ...
20
votes
3answers
8k views

How to convert a java program to daemon with jsvc?

I wrote a program and now I am expected to convert it to a daemon. Since I am a noob and dont know anything about it, can you please tell me how can I do it or can you please give me basic tutorials ...
20
votes
4answers
9k 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?
20
votes
7answers
10k 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 ...
19
votes
2answers
7k 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 ...
17
votes
2answers
5k 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?
17
votes
3answers
3k 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 ...
16
votes
16answers
3k 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 ...
16
votes
3answers
659 views

Is writing a daemon in Python a good idea?

I have to write a daemon program that constantly runs in the background and performs some simple tasks. The logic is not complicated at all, however it has to run for extended periods of time and be ...
16
votes
2answers
6k views

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

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?
16
votes
2answers
2k 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 ...
15
votes
4answers
5k 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 ...
14
votes
4answers
10k 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 is either GPL or it ...
14
votes
6answers
4k 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 ...
13
votes
3answers
4k 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 ...
13
votes
6answers
7k 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
7answers
2k 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 ...
13
votes
4answers
3k 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? ...
13
votes
14answers
2k 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 ...
13
votes
4answers
407 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 ...
12
votes
6answers
4k 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
12
votes
4answers
4k 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 ...
12
votes
6answers
480 views

How to properly maintain a listening port for a long time?

I wrote this small server application in pure C that listens to incoming connections in a given port, very simple stuff. It goes with the usual socket initialization procedure, create the socket() ...
11
votes
2answers
807 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 == ...
11
votes
4answers
4k 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 ...
11
votes
2answers
942 views

What should a Java program listen for, to be a good Linux service?

In Linux you can give the following commands: service <someService> start service <someService> stop As opposed to killing the process with kill -9 <someService>. As I learned in ...
10
votes
2answers
2k views

C# equivalent to Java's Thread.setDaemon?

How do I set a thread to a daemon thread in C#?
9
votes
3answers
5k views

Efficient Python Daemon

I was curious how you can run a python script in the background, repeating a task every 60 seconds. I know you can put something in the background using &, is that effeictive for this case? I was ...
9
votes
5answers
3k 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. ...
9
votes
8answers
5k 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 ...
9
votes
2answers
681 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 ...
8
votes
3answers
2k views

How to make python argparse mutually exclusive group arguments without prefix?

Python2.7 argparse only accepts optional arguments (prefixed) in mutually exclusive groups: parser = argparse.ArgumentParser(prog='mydaemon') action = ...
8
votes
5answers
3k 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.
8
votes
4answers
4k views

Make a Ruby program a daemon?

I want to write a Ruby program that will always be running in the background (a daemon) on my mac. Can someone point me in the right direction on how this would be done? Thanks.
8
votes
3answers
1k 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 ...
8
votes
1answer
2k 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 ...
8
votes
1answer
342 views

Using celeryd as a daemon with multiple django apps?

I'm just starting using django-celery and I'd like to set celeryd running as a daemon. The instructions, however, appear to suggest that it can be configured for only one site/project at a time. Can ...
8
votes
1answer
260 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 ...

1 2 3 4 5 20