Tagged Questions

16
votes
6answers
2k 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 …
11
votes
7answers
1k 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 …
10
votes
9answers
3k views

A cron job for rails: best practices?

What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?
10
votes
9answers
763 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 …
8
votes
4answers
2k views

java background/daemon/service cross platform best pratices

Howdy 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 …
7
votes
16answers
757 views

Is it wise to use PHP for a daemon?

Hello all, 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 …
7
votes
6answers
1k 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 …
7
votes
7answers
1k 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 …
7
votes
3answers
985 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 …
6
votes
8answers
832 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 …
6
votes
6answers
751 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 …
6
votes
4answers
824 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 …
5
votes
6answers
215 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 …
5
votes
3answers
695 views

Starting a background process in python

I'm a python newbie, so sorry for the simple question. I'm trying to port a shell script to the much more readable python version. The original shell script starts several processes (utilities, …
5
votes
4answers
568 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.

1 2 3 4 5 7 next
15 30 50 per page