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

0
votes
1answer
396 views

boost-asio as a “template” for a daemon

I am trying to wrangle some demo code that runs as a console application in Linux into a daemon. The SDK is in c++, so I went looking for c++ code that does all the things a daemon needs to do, i.e. ...
0
votes
1answer
119 views

Change delay of ScheduledThreadPoolExecutorService without terminating the service

As the name suggests, we have a daemon framework which uses Executor service to schedule daemons. java.util.concurrent.ScheduledThreadPoolExecutor.scheduleWithFixedDelay(Runnable command, long ...
1
vote
2answers
798 views

Upstart script for nodejs daemon in CentOS doesn't work (crashes on start)

I have the following in a .conf file in the /etc/init/ directory of my CentOS server: #!upstart description "shortnr server for fmc.io" author "Felix Milea-Ciobanu" start on startup stop on ...
0
votes
1answer
146 views

reduce php daemon memory usage

could you please help me to find what cause this process to reach 500MB of memory usage. It is basically an html page downloader. Despite the fact that the process is stable (and do not exceed that ...
3
votes
1answer
188 views

Creating python 2.7 daemon with pep-3143

Does anyone knows how to implement python 2.7 as a Linux daemon? I'm looking for a working example with start/stop arguments.
1
vote
1answer
186 views

How to start Java main thread like a daemon thread?

I need to start my java class like a background process without using jsvc. How could I do this?
1
vote
2answers
123 views

start python program in the background that can prompt the user for password

Basically I wanted to start a daemon in the background that will still prompt the user in the console for a password. I created this with pexpect, but when this program ends it kills the daemon since ...
1
vote
1answer
187 views

Execute a program many times without duplicating the instance

I have this application which is a daemon program that detects and monitors devices. It accepts arguments which then prints what devices are available. e.g. ./udevmon -s //prints the devices that ...
1
vote
1answer
73 views

What are the recomended ways to manage a django project in production (in apache server) [closed]

My goal is to have the django app automatically restart whenever it crashes, and to write the error to a log file. There are suggestions to use supervisord, daemontools, or django-supervisor, but i'm ...
0
votes
1answer
124 views

Carbon 4.0.1 (BAM 2.0) as a Linux daemon

I am currently evaluating some of the WSO2 servers, one of them is the BAM 2.0 (on the carbon 4.0.1). So far, in the packages was always a daemon.sh file included, which could be installed with ...
0
votes
1answer
204 views

Will the valgrind work for Daemon programs

Running valgrind on foreground programs is easy. But will valgrind work for daemon programs and give the output after it executes. And how do I do that? Thanks
0
votes
1answer
74 views

How to implement INSTREAM protocal for clamd in Ruby?

I am struggling to implement the INSTREAM command of clamd daemon in Ruby. Here is the document of clamd @file = File.open("input.txt") socket = TCPSocket.new(HOST, PORT) #writing the command ...
1
vote
1answer
138 views

Efficient daemon in Vala

i'd like to make a daemon in Vala which only executes a task every X seconds. I was wondering which would be the best way: Thread.usleep() or Posix.sleep() GLib.MainLoop + GLib.Timeout other? I ...
1
vote
1answer
230 views

Circus, running circusd as a daemon?

So, I just switched from Supervisor to Circus for controlling Python processes. I'm starting the daemon as circusd from the command line. Obviously, this isn't how I should be doing it, but I can't ...
7
votes
3answers
1k views

How do I get my Golang web server to run in the background?

I have recently completed the Wiki web development tutorial (http://golang.org/doc/articles/wiki/). I had tons of fun and i would like to experiment more with the net/http package. However, I noticed ...
0
votes
1answer
38 views

Starting RoR server as a daemon makes File.read fail

I have a RoR app that is working as expected when the server is started normally (rails s), but when I start the server as a daemon, I am getting an error when I run File.read (<filename>): ...
2
votes
1answer
231 views

Rabbit MQ AMQP and DaemonKit

I am trying to integrate the RabbitMq and AMQP along with the daemon kit to schedule the messaging tasks using ruby on rails platform. I am in the experimenting stage. I referred couple of blogs and ...
0
votes
0answers
173 views

How to create a daemon for a batch script

I have a batch file that creates a scheduled task using schtasks like this: schtasks /create /sc daily /st 10:00:00 /tn my_task_name /tr ...
0
votes
3answers
337 views

How do I restart the scrapyd daemon?

I've installed the scrapyd daemon on an EC2 server exactly as decribed in the documentation: http://doc.scrapy.org/en/0.14/topics/scrapyd.html. Now I've changed some of the congiuration variables in ...
1
vote
2answers
170 views

Should I turn a perl script that parses a /var/log/.* file into a daemon?

I am writing a perl script to parse, for example, /var/log/syslog. The perl script triggers further subsequent tasks when particular events in the log appear. The log is parsed following the advice ...
0
votes
2answers
207 views

Does a Java Daemon Thread Share Heap or Perm Gen with Spawning Process?

If I create a Daemon thread from my program (a non-daemon process), are the heap and perm gen memory spaces shared with the new thread or is it allocated anew? If the daemon thread gets its own ...
3
votes
1answer
252 views

nodejs daemon wrong architecture

I'm trying to run 'dali' a highcharts exporter from nodejs on my Mac under OSX Mountain Lion I'm getting the following error: module.js:485 process.dlopen(filename, module.exports); ^ ...
0
votes
0answers
70 views

Load/Unload LaunchDaemon via cpp or QT on mac

I'm writing a QT GUI App in cpp that needs to be able to start/stop a Launch Daemon running on Mac. To do this, the user needs root privileges. Is there a way to elevate user privileges to ...
0
votes
1answer
48 views

Best way to reload daemon state - from saved data in my custom format or a persistent database?

I have a infinite process running and end of each day it basically writes to a file and populates internal objects with the updated data. It's running on Ubuntu and written in Python. Kindly advice ...
0
votes
1answer
248 views

Permission problems prevent celery from running as daemon?

I'm currently having some trouble running celery as daemon. I use apache to serve my Django application, so I set uid and gid in celery setting all as "www-data". There are 2 places I know so far that ...
2
votes
1answer
938 views

nginx + uwsgi + debian + daemon

Well, first of all these are just a few tutorials I have followed: projects.unbit.it/uwsgi/wiki/Doc projects.unbit.it/uwsgi/wiki/Install projects.unbit.it/uwsgi/wiki/RunOnNginx ...
0
votes
1answer
116 views

Daemon under linux fails to launch app with execv

We have a command and control daemon running under Fedora 16 that provides various services, including starting one of our ancillary applications. This has been working for us for quite some time. ...
-4
votes
3answers
246 views

How to write the daemon scripts in unix? [closed]

Please could you tell me how to write the scripts for daemon process . Regards, Vedant
1
vote
2answers
143 views

Detect if a process has stopped in ubuntu

I have a daemon running on my server. It has been running smoothly for a while, and I keep logging every occurrence of an event in the daemon. Yesterday I noticed something strange. The daemon had ...
0
votes
1answer
242 views

How to apply Monit on a nginx PHP script

I am using a linux tool called Monit that I am trying to monitor a PHP daemon script. I do not know how to issue the command correctly. Please provide me with some sample command for those who are ...
1
vote
0answers
79 views

python daemon threads print doesn't show in deamon tools log until program terminate

I have a python program working fine. After I move it to use djb daemon tools to start it, the print out message in the daemon threads doesn't show until I stop the program. I am using python 2.6, and ...
2
votes
1answer
270 views

CGI Bash script to spawn daemon process

I am working on a project to stream HDTV from a personal computer to devices supporting HTTP Live Streaming (think iOS devices and some android). I have the formatting of the video and the streaming ...
0
votes
2answers
74 views

Where to put executables used by daemon processes in Mac OS X

I am making a daemon for Mac OSX. So my daemon will run an executable. Can you tell me where is the best place for the executable to be placed. I want this to be run for every user. Cheers
1
vote
1answer
305 views

WHOIS server daemon

Is there any WHOIS server daemons to run on my serer and serve My requests? Is it possible to deploy own WHOIS server in the end of WHOIS hierarchy like DNS servers are?
1
vote
0answers
106 views

Using PHP as daemon, lots of network activity, crashing

Backgrond: I currently have a daemon written in PHP. I knew PHP wasn't the best solution to this problem when I wrote it, but it's what I had access to at the time and what I'm doing makes PHP more ...
7
votes
1answer
852 views

Apache jsvc fails to stop daemon

I am using a native compiled jsvc to launch a java daemon. I am running this on an openSUSE 32 bit vm. The code implements Apache's daemon interface, and I'm executing the deamon with the following ...
2
votes
0answers
331 views

Daemon context won't run inside function

I'm creating a python bridge to a program. I'm using the pipi daemon module to prevent lockups. http://pypi.python.org/pypi/python-daemon/ I basically want to eventually put this in a module for ...
1
vote
1answer
368 views

USB detection in jailbreak ios

I'm currently trying to develop daemon on a jailbreak ios device and I'm looking to find a way to detect that the device is to usb. Is there any plist or anything else that I can monitor to check the ...
0
votes
1answer
211 views

Add resource files to classpath using daemon(jsvc)

I am struggeling with this for a while. I am using Spring3.1 in a standalone env. I have resources files which I need to add into the classpath (applicationXML). In eclipse it's a known and easy way. ...
0
votes
2answers
2k views

How to fork bash script from itself?

So i did search all over stackoverflow and every topic i could find regarding this issue is answered with nohup solution. In my case nohup will not work. Why? I need PID of child process. One more ...
1
vote
1answer
50 views

Differing daemon implementations

I'm relatively new to python and I've only skimmed the surface of programming so far, which is why I'm confused about daemons. I generally know what they do, but I'm not sure what the best way to ...
1
vote
2answers
251 views

self restarting daemon in python in *nix system

I need to created a daemon in python. I did search and found a good piece of code. The daemon should be started automatically after system boots and it should be started if it was unexpectedly ...
0
votes
2answers
220 views

What is the difference between a detached thread and a daemon thread?

I understand that all daemon threads are detached threads, but why are all detached threads not daemon? Say thread "main" creates thread "A"(non-detached) and thread "A" creates thread "B"(detached). ...
0
votes
1answer
60 views

regarding a script launching a daemon process

I am quite new to the daemon process and java, and was just given the following script for running a daemon process. I can generally understand the structure of this script. But I have several ...
1
vote
1answer
146 views

C++ Keep process alive after it kills its parent

I'm working on implementing a self-updater for a daemon on OS X. The update is published as a .pkg file, so what I'm trying to do is as follows: When the daemon is notified that an update is ...
0
votes
1answer
292 views

PHP Script won't run on command line

The Code: #!/usr/bin/php -q <?php while(true){ $rate_limit = json_decode(file_get_contents('http://api.twitter.com/1/account/rate_limit_status.json'),true); # Check how many API calls remain ...
1
vote
1answer
201 views

rc.d start does not terminate?

So I wrote the Arch Linux rc.d script for mongod daemon (following an example), but when I do: sudo rc.d start mongod it just gets stuck on: :: Starting /usr/bin/mongod [BUSY] and never ...
3
votes
3answers
270 views

Trapping signals cleanly in Perl

I have a simple Perl script that simply prints a line of text to stdout. What I want to accomplish is that while this script runs, if I (or someone else) issues a signal to that process to stop, I ...
0
votes
0answers
309 views

Pyro dont works with python-daemon (pro level :) )

So, lets start. 1) PYRO - Python Remote Objects - library that allows you to share you objects between separate scripts 2) python-daemon - handles daemonization of our script - detach and other ...
1
vote
4answers
2k views

Linux daemon start up

i wrote one service on linux(Redhat Server Edition 5.1) . which is started by shell scritpt, In case when i start my application i manually start my service , now i want to start my service at boot ...

1 3 4 5 6 7 20