A daemon is a process or program that runs in the background (IE requiring no user interaction) on a multi-tasking operating systems.
0
votes
2answers
20 views
Stopping a php script that's running in the background
I've been following some tutorials on running and managing php scrips as background process. I've been playing with the script below.
<?php
$count = 0;
while(true){
$count = $count + 1;
...
1
vote
1answer
19 views
What is the effect of leaving the call setsid() when creating daemon processes?
What are the perils of not calling setsid() when daemonizing a process?
1
vote
3answers
472 views
Architecture of Website based on java
I've just started programming with Java, so might appear as silly question, but I was not able to find simple answer on the internet. This is "big" question which I have to answer before getting too ...
5
votes
1answer
708 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
vote
1answer
191 views
Daemonizing a python script with python-daemon - socket trouble
I'm try to daemonize some code, but I'm having some trouble.
If I call the code with tklogger(), it runs just fine. However, if I call it in the daemon context, I get the following trace:
Traceback ...
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 ...
1
vote
1answer
67 views
installing PostgreSQL on Cygwin as a service
I'm a novice trying to install Postgresql on Cygwin as a service. I have been following the steps listed in this URL: http://www.smartpixie.com/wiki/Tech/CygwinPostgreSQL.twiki.html
Everything was ...
1
vote
2answers
28 views
Linux daemon set /proc/
I once wrote a simple daemon in bash - also sets the values in /proc/*. For example,
echo 50 > /sys/class/backlight/acpi_video0/brightness
I want to rewrite in C + + and share - but how to use ...
-1
votes
0answers
48 views
Have a server play a sound when it receives an email [closed]
There's a server sitting in my room, and I would like it to play a sound whenever I receive a specific email (let's just say, for example, the emails that notify me I have a new follower on twitter).
...
0
votes
2answers
31 views
Java headless exception when I start java using a linux daemon
I have a linux daemon that starts a java instance for each user that is logged on the system.
I use the followig command to start the java application for each user:
cd /home/user/java_path/ ...
1
vote
2answers
31 views
Periodically fetch data and display it with Django
I would like to implement a kind of "real-time" notification system in my Django application.
I would store some messages destined to a specific user in my database.
When a user is logged in the ...
0
votes
0answers
15 views
Objective C Daemon run not avery time will launch
i have create a Daemon that search all USB storage connectet with my MAC an then control all Serial number for send a HTTPRequest to a local server.
+(NSMutableArray*)impelemntazioneInterfaccia{
...
0
votes
3answers
24 views
Objective C - HttpRequest with Daemon
i have created a daemon in Objective C that after search USB device, have to send an HttpRequest to an URL.
I have tried by Browser and the Host is reachable.
For create a Daemon i have used ...
0
votes
1answer
29 views
how to send input to a daemon in linux
#!/bin/bash
. /etc/init.d/functions
NAME=foo
DIR=/home/amit/Desktop
EXEC=foo.pl
PID_FILE=/var/run/foo.pid
IEXE=/etc/init.d/foo
RUN_AS=root
if [ ! -f $DIR/$EXEC ]
then
echo "$DIR/$EXEC not ...
1
vote
2answers
803 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
61 views
How can I get Jsvc to find the DaemonLoader?
I have the commons-daemon-x.jar in the classpath. The Jsvc is successfully launching the Java VM. But jsvc is reporting that it cannot find the daemon loader class even though it is in the classpath.
...
2
votes
1answer
63 views
Using multiple jars in the jsvc classpath
I am trying to get a Java application to run as a Linux service using jsvc. I found How to convert a java program to daemon with jsvc? which was able to get me most of the way, but I am still ...
7
votes
3answers
569 views
Does endless While loop take up CPU resources?
From what I understand, you write your Linux Daemon that listens to a request in an endless loop.
Something like..
int main() {
while(1) {
//do something...
}
}
ref: ...
1
vote
1answer
35 views
bash script to monitor myself
I need to develop a shell script that would not be started if another instance of them self is running.
If I build a test.sh that monitors itself I need to know if it is already running and then ...
0
votes
2answers
61 views
Interface or API to retrieve power consumption data for built-in devices in linux
I need to write a power, temperature monitor system for linux system. It needs display some power statistics for for some or all builtin-devices as what powerTop does.I have searched quite a bit and ...
0
votes
1answer
37 views
Why isn't stdout set after executing a child process in a node.js script that's running as a daemon?
This works as expected if I run it from the command line (node index.js). But when I execute this Node.js (v0.10.4) script as a daemon from a init.d script the stdout return value in the exec callback ...
1
vote
2answers
45 views
python daemon killed (by kernel?)
I have a python2.7 daemon process using a module from http://www.jejik.com/files/examples/daemon.py
The process is a heavy one with about 40 GB RAM usage and 9 child threads. Server uses RHEL 6.3 ...
0
votes
0answers
42 views
How to use Apache Commons Daemon with Cross-Platform Service?
I have a Java daemon (system service running 24/7/365) that needs to deploy as an executable JAR, however I would like users (on Windows, Linux and Mac alike) to be able to start/stop the application ...
0
votes
1answer
53 views
Unit Testing Apache Commons Daemon in Java
Iv researched around and cant seem to find any decent resource to help me JUnit test an apache commons daemon written in Java. I would like to be able to test that when a daemon starts it starts ...
0
votes
0answers
27 views
daemontools run script issue supervise
I am trying to use
http://cr.yp.to/daemontools/supervise.html
I have some scripts that boot straps some requirments for my service
bring up a database
compile some code
etc...
Scripts though ...
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?
1
vote
1answer
76 views
Serial port does not work in rewritten Python code
I have a Python program that reads some parameters from an Arduino and stores it in a database. The serial port is set up and used like this:
ser = serial.Serial(port=port, baudrate=9600)
...
1
vote
1answer
178 views
apn_sender gem daemon not running
Im using apn_sender for rails 3 and i have been able to install the gem and get it working just fine by using
rake apn:sender
I have tried to get it started in production mode on a ubuntu box by ...
-1
votes
0answers
6 views
daemon ceated via pam module is known as zombie [closed]
I need a program to run on user's login (with custom parameters for each user) and stop on users logout.
I have written a pam session module to start and stop program.
I run the program as a daemon ...
1
vote
1answer
25 views
What programs acquire a controlling tty?
The reason for doing a double-fork when daemonizing is to prevent the daemon acquiring a controlling tty (What is the reason for performing a double fork when creating a daemon?)
What are some ...
0
votes
1answer
31 views
why python threadpool creat daemonic threads and join them at last?
I've been reading python's threadpool module's code.
It manipulates threads in this way : All workerThreads are created as daemonic thread. And it also have a dismiss mechanism that you can safely ...
0
votes
1answer
51 views
python - losing connection to postgresql in daemon
I am rewriting a python script to store data from an arduino in a postgresql data base, wanting to run it as a deamon using https://pypi.python.org/pypi/python-daemon/. The original script works ...
0
votes
1answer
14 views
Cocoa daemon applicationdidfinishlaunching not invoked?
All:
I write a daemon using Cocoa, it works fine. But after a reboot the MacBook Pro, the applicationDidFinishLaunching is not get invoked.
I notice that when try to attach the process using Xcode ...
1
vote
3answers
737 views
python - daemonize bottlepy script
I'm using a Bootle Python Web Framework to develop webapps on Ubuntu.
Is there any effective way to daemonize script that starts default bottlepy webserver?
Thank you.
UPD: Now I'm using Supervisord ...
0
votes
1answer
35 views
Daemonize, making program to work in background in python/wx.python
I created an complete logger-type program, that logs the certain data from the internet sources. It's GUI I coded in wx.python, now I want to daemonize it (if it is the right term). The program needs ...
1
vote
1answer
334 views
Can you use python-daemon with Python 2.4?
I'm converting my program to run as a daemon on Linux. I'd like to use the python-daemon package to save repeating the work. However, I need to support python 2.4.
The example given on the page ...
0
votes
2answers
53 views
Debugging a running daemon using gdb
I am developing a high traffic network C server application that runs as a daemon. Under some circumstances, the app crashes (always without core). How I can debug the running daemon with gdb to find ...
0
votes
1answer
31 views
Daemon threads in ForkJoinPool
According to Java Doc 7:
Because ForkJoinPool uses threads in daemon mode, there is typically
no need to explicitly shutdown such a pool upon program exit
Are there no other advantages?
Is a ...
0
votes
0answers
48 views
Find out where UNIX daemon gets stuck?
Years ago, I wrote a UNIX daemon (wsqueryd) that puts itself in the
background:
pid_t pid;
pid = fork();
if (pid < 0)
misc_log_error_and_exit("Could not fork parent process");
if (pid > 0) ...
2
votes
2answers
76 views
c++ Closing cout properly
I wanted to write a daemon which acts as a remote shell. As such I have to close stdin, stdout and stderr.
Now I would like to know how this is properly done.
std::streambuf * old = ...
1
vote
2answers
2k views
Apache commons daemon “Failed creating Java” error
I'm trying to start a Windows service using the Apache commons daemon. It works on Windows XP, but I'm trying to run it on Windows 7 x64. It fails to start and I get the following error in the logs:
...
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?
1
vote
1answer
49 views
Debugging techniques for shut-down problems in Python daemons
I am doing some gnarly stuff with Python threads including daemons.
I am getting an intermittent error on some tests:
Exception in thread myconsumerthread (most likely raised during interpreter ...
0
votes
1answer
245 views
Editing android init.rc for third party daemon restart
I have a daemon written in C++ running on the background on android.
I want that daemon to restart upon crash or unexpected event without adding independent crash protection. What is the best way to ...
0
votes
1answer
59 views
Programmatically start GPSD daemon in linux
I am doing a project read GPS values output from a GPS dongle and need to
programmatically start the gpsd daemon.
i.e. I need to automate the following command;
sudo gpsd /dev/ttyUSB0 -F ...
0
votes
1answer
32 views
Daemon isn't loaded with SMJobSubmit objective C
I want to write a program which load a daemon with SMJobSubmit() API
Here's my code :
int main (int argc, const char * argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
...
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 ...
0
votes
0answers
20 views
Let thread-daemon wait until a certain “final value” is met
I have a small issue with a deamon process I'm running inside my Python script.
This is my main script;
# -*- coding: utf-8 -*-
import os
import wx
import threading
from library.gui import WebGui
...
2
votes
3answers
83 views
MacOsX: Launching an app using NSWorkspace from a daemon doesn't work if the daemon is run as root
I created a Command Line Tool app using Xcode.
In that app, I used NSWorkspace to launch another application bundle (.app) as suggested here.
MacOsX: How to launch an application (.app) from a ...
0
votes
0answers
30 views
In linux, is daemon processes more efficient than normal foreground programs?
I'm wondering whether daemon processes will perform better than normal programs because they eliminate some redundant features, such as allow interaction with users, etc.




