active questions tagged daemon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T03:35:44Zhttp://stackoverflow.com/feeds/tag/daemonhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1900075/how-to-load-system-wide-daemons-on-macos0How to load system-wide daemons on MacOSNobik2009-12-14T10:18:32Z2009-12-16T08:57:28Z
<p>I'm trying to load my daemon-app with this command <code>launchctl load /Library/LaunchDaemons/myPlistFileName</code> It works fine, but only while my user is logged in on system.</p>
<p>How can i load my deamon-app, which will stay loaded without any user logged into the system (like the windows-services)??</p>
<p>The command <code>sudo launchctl load /Library/LaunchDaemons/myPlistFileName</code> give me an error -> <em>nothing found to load</em></p>
<p>Which is the right way to do this?</p>
<p><hr></p>
<p>EDIT: My Plist-File</p>
<pre><code><key>Label</key>
<string>com.myCompany.myApplication</string>
<key>ProgramArguments</key>
<array>
<string>open</string>
<string>-g</string>
<string>/Applications/myAppDir/myApplication.app</string>
</array>
<key>UserName</key>
<string>root</string>
<key>GroupName</key>
<string>wheel</string>
<key>KeepAlive</key>
<true/>
<key>OnDemand</key>
<false/>
</code></pre>
<p>Currently it is so: at system-start my daemon starts with root-permissions. After i've logged in with my user-account, the daemon-process restarts and my user is the new owner of the process</p>
http://stackoverflow.com/questions/876560/how-do-i-use-request-dynamic-in-liquidsoap0How do I use request.dynamic in LiquidSoapFBerthold2009-05-18T07:17:42Z2009-12-15T01:58:10Z
<p>In <a href="http://savonet.sourceforge.net/" rel="nofollow">LiquidSoap</a> it's possible to either preload all audio values, or to have them load each time they are requested using request.dynamic. When I attempt to use request.dynamic and load liquidSoap as a daemon it hangs when trying to process the file, but works if I use the static loading methods. Sample code follows.</p>
<p>Essentially it seems that when dynamic code is running in daemon mode, it gets as far as selecting the decoder and hangs. </p>
<p>I'm running under Ubuntu 4.3.3-5ubuntu4, with LiquidSoap version 0.9.0</p>
<p>Static code works in all cases:</p>
<pre><code> set("log.file.path", "/tmp/static.log")
output.file.mp3("/tmp/staticTest.mp3", mksafe(single("say:Hello Static World")))
</code></pre>
<p>Dynamic code only works when loaded directly into the shell, not when run as a daemon:</p>
<pre><code> set("log.file.path", "/tmp/dynamic.log")
output.file.mp3("/tmp/dynamicTest.mp3", mksafe(request.dynamic({request.create("say:Hello dynamic world")})))
</code></pre>
<p>Logs from Dynamic when not in daemon mode:</p>
<pre><code> 2009/05/18 02:51:55 >>> LOG START
2009/05/18 02:51:55 [protocols.external:3] Didn't find "ufetch"
2009/05/18 02:51:55 [protocols.external:3] Found "/usr/bin/wget"
2009/05/18 02:51:55 [main:3] Liquidsoap 0.9.0
2009/05/18 02:51:55 [threads:3] Created thread "generic queue #1".
2009/05/18 02:51:55 [root:3] Waking up active nodes...
2009/05/18 02:51:55 [threads:3] Created thread "root" (1 total).
2009/05/18 02:51:55 [root:3] Broadcast starts up!
2009/05/18 02:51:55 [protocols.say:3] Synthetizing "Hello dynamic world" to "/tmp/say55b73c.wav"
2009/05/18 02:51:55 [mksafe:3] Switch to safe_blank.
2009/05/18 02:51:56 [decoder:3] Decoder WAV chosed for "/tmp/say55b73c.wav"
2009/05/18 02:51:57 [src_4703:3] Prepared "/tmp/say55b73c.wav" -- rid 0
2009/05/18 02:51:57 [protocols.say:3] Synthetizing "Hello dynamic world" to "/tmp/say03fa99.wav"
2009/05/18 02:51:57 [mksafe:3] Switch to src_4703 with transition.
2009/05/18 02:51:57 [root:2] We must catchup 1.13 seconds!
(repeated data removed)
2009/05/18 02:52:04 [src_4703:3] Prepared "/tmp/say71b4ce.wav" -- rid 4
2009/05/18 02:52:04 [main:3] Shutdown started!
2009/05/18 02:52:04 [main:3] Waiting for threads to terminate...
2009/05/18 02:52:04 [protocols.say:3] Synthetizing "Hello dynamic world" to "/tmp/say5a623c.wav"
2009/05/18 02:52:04 [root:3] Shutting down sources...
2009/05/18 02:52:05 [decoder:3] Decoder WAV chosed for "/tmp/say5a623c.wav"
2009/05/18 02:52:06 [src_4703:3] Finished with "/tmp/say71b4ce.wav"
2009/05/18 02:52:06 [threads:3] Thread "root" exited (0 remaining).
2009/05/18 02:52:06 [main:3] Cleaning downloaded files...
2009/05/18 02:52:06 [protocols.say:3] Synthetizing "Hello dynamic world" to "/tmp/say2a79fb.wav"
2009/05/18 02:52:06 >>> LOG END
</code></pre>
<p>Logs from Dynamic when in daemon mode:</p>
<pre><code> 2009/05/18 03:09:30 [protocols.external:3] Found "/usr/bin/wget"
2009/05/18 03:09:30 [main:3] Liquidsoap 0.9.0
2009/05/18 03:09:30 [threads:3] Created thread "non-blocking queue #1".
2009/05/18 03:09:30 [threads:3] Created thread "generic queue #1".
2009/05/18 03:09:30 [root:3] Waking up active nodes...
2009/05/18 03:09:30 [threads:3] Created thread "root" (1 total).
2009/05/18 03:09:30 [root:3] Broadcast starts up!
2009/05/18 03:09:30 [protocols.say:3] Synthetizing "Hello dynamic world" to "/tmp/saycb9c37.wav"
2009/05/18 03:09:30 [mksafe:3] Switch to safe_blank.
2009/05/18 03:09:32 [decoder:3] Decoder WAV chosed for "/tmp/saycb9c37.wav"
</code></pre>
http://stackoverflow.com/questions/1859049/check-if-key-is-pressed-using-python-a-daemon-in-the-background1Check if key is pressed using python (a daemon in the background)Nazarius Kappertaal2009-12-07T10:09:09Z2009-12-10T06:46:44Z
<p>I've created a python script in which an event needs to be executed each time I press the Super (or WinKey) on my keyboard.</p>
<p>How can one achieve this without the python process being "focused" - as it is running in the background waiting for the key to be pressed to execute the event?</p>
<p>I've seen a lot of posts around the web showing me how to read input - but they have all required one to have the process "focused" and none have showed me how to capture the Super (or WinKey) using a python script.</p>
<p>I'm running Ubuntu 9.10.</p>
<p><hr></p>
<p><strong>EDIT:</strong></p>
<p>This allows me to get the state of modifier keys on my *nix system. However how can one also do this for other keys? e.g. (abcdefgh123456789!@#$%).</p>
<pre><code>#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""OSD Neo2
========
On screen display for learning the keyboard layout Neo2
Copyright (c) 2009 Martin Zuther (http://www.mzuther.de/)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Thank you for using free software!
"""
# Here follows a plea in German to keep the comments in English so
# that you may understand them, dear visitor ...
#
# Meine Kommentare in den Quellcodes sind absichtlich auf Englisch
# gehalten, damit Leute, die im Internet nach Lösungen suchen, den
# Code nachvollziehen können. Daher bitte ich darum, zusätzliche
# Kommentare ebenfalls auf Englisch zu schreiben. Vielen Dank!
import ctypes
import ctypes.util
import gettext
import os
import types
# initialise localisation settings
module_path = os.path.dirname(os.path.realpath(__file__))
gettext.bindtextdomain('OSDneo2', os.path.join(module_path, 'po/'))
gettext.textdomain('OSDneo2')
_ = gettext.lgettext
class SimpleXkbWrapper:
"""
Far from complete wrapper for the "X Keyboard Extension" (well, to
be honest, it just wraps what I need using Python's "ctypes"
library <g>).
"""
# set this to true to get lots of debugging information (and
# considerably slow things down)
DEBUG_XKB = False
# "C defines" from file /usr/include/X11/extensions/XKB.h (Ubuntu 9.04):
# $XFree86: xc/include/extensions/XKB.h,v 1.5tsi Exp $
#
# XkbUseCoreKbd is used to specify the core keyboard without having to
# look up its X input extension identifier.
XkbUseCoreKbd = 0x0100
# "C defines" from file /usr/include/X11/XKBlib.h (Ubuntu 9.04):
# $XFree86: xc/lib/X11/XKBlib.h,v 3.5 2003/04/17 02:06:31 dawes Exp $ #
#
# XkbOpenDisplay error codes
XkbOD_Success = 0
XkbOD_BadLibraryVersion = 1
XkbOD_ConnectionRefused = 2
XkbOD_NonXkbServer = 3
XkbOD_BadServerVersion = 4
# "C typedef" from file /usr/include/X11/extensions/XKBstr.h (Ubuntu 9.04):
# $Xorg: XKBstr.h,v 1.3 2000/08/18 04:05:45 coskrey Exp $
#
# Common data structures and access macros
#
# typedef struct _XkbStateRec {
# unsigned char group;
# unsigned char locked_group;
# unsigned short base_group;
# unsigned short latched_group;
# unsigned char mods;
# unsigned char base_mods;
# unsigned char latched_mods;
# unsigned char locked_mods;
# unsigned char compat_state;
# unsigned char grab_mods;
# unsigned char compat_grab_mods;
# unsigned char lookup_mods;
# unsigned char compat_lookup_mods;
# unsigned short ptr_buttons;
# } XkbStateRec,*XkbStatePtr;
class XkbStateRec(ctypes.Structure):
_fields_ = [
('group', ctypes.c_ubyte), \
('locked_group', ctypes.c_ubyte), \
('base_group', ctypes.c_ushort), \
('latched_group', ctypes.c_ushort), \
('mods', ctypes.c_ubyte), \
('base_mods', ctypes.c_ubyte), \
('latched_mods', ctypes.c_ubyte), \
('locked_mods', ctypes.c_ubyte), \
('compat_state', ctypes.c_ubyte), \
('grab_mods', ctypes.c_ubyte), \
('compat_grab_mods', ctypes.c_ubyte), \
('lookup_mods', ctypes.c_ubyte), \
('compat_lookup_mods', ctypes.c_ubyte), \
('ptr_buttons', ctypes.c_ushort) \
]
# "C defines" from file /usr/include/X11/X.h (Ubuntu 9.04):
# $XFree86: xc/include/X.h,v 1.6 2003/07/09 15:27:28 tsi Exp $
#
# Key masks. Used as modifiers to GrabButton and GrabKey, results of
# QueryPointer, state in various key-, mouse-, and button-related
# events.
ShiftMask = 1
LockMask = 2
ControlMask = 4
Mod1Mask = 8
Mod2Mask = 16
Mod3Mask = 32
Mod4Mask = 64
Mod5Mask = 128
def __init__(self):
# dynamically link to "X Keyboard Extension" library
library_xf86misc = ctypes.CDLL(ctypes.util.find_library('Xxf86misc'))
# print debugging information if requested
if self.DEBUG_XKB:
print
print ' %s' % library_xf86misc
# define "ctypes" prototype for the function
#
# Display *XkbOpenDisplay(display_name, event_rtrn, error_rtrn,
# major_in_out, minor_in_out, reason_rtrn)
#
# char * display_name;
# int * event_rtrn;
# int * error_rtrn;
# int * major_in_out;
# int * minor_in_out;
# int * reason_rtrn;
paramflags_xkbopendisplay = \
(1, 'display_name'), \
(2, 'event_rtrn'), \
(2, 'error_rtrn'), \
(3, 'major_in_out'), \
(3, 'minor_in_out'), \
(2, 'reason_rtrn')
prototype_xkbopendisplay = ctypes.CFUNCTYPE( \
ctypes.c_uint, \
ctypes.c_char_p, \
ctypes.POINTER(ctypes.c_int), \
ctypes.POINTER(ctypes.c_int), \
ctypes.POINTER(ctypes.c_int), \
ctypes.POINTER(ctypes.c_int), \
ctypes.POINTER(ctypes.c_int) \
)
# set-up function (low-level)
self.__XkbOpenDisplay__ = prototype_xkbopendisplay( \
('XkbOpenDisplay', library_xf86misc), \
paramflags_xkbopendisplay \
)
# define error handler
def errcheck_xkbopendisplay(result, func, args):
# print debugging information if requested
if self.DEBUG_XKB:
print
print ' [XkbOpenDisplay]'
print ' Display: %#010x' % result
print ' display_name: %s' % args[0].value
print ' event_rtrn: %d' % args[1].value
print ' error_rtrn: %d' % args[2].value
print ' major_in_out: %d' % args[3].value
print ' minor_in_out: %d' % args[4].value
print ' reason_rt: %d' % args[5].value
# function didn't return display handle, so let's see why
# not
if result == 0:
# values were taken from file /usr/include/X11/XKBlib.h (Ubuntu 9.04):
# $XFree86: xc/lib/X11/XKBlib.h,v 3.5 2003/04/17 02:06:31 dawes Exp $ #
error_id = args[5].value
if error_id == self.XkbOD_Success:
error_name = 'XkbOD_Success'
elif error_id == self.XkbOD_BadLibraryVersion:
error_name = 'XkbOD_BadLibraryVersion'
elif error_id == self.XkbOD_ConnectionRefused:
error_name = 'XkbOD_ConnectionRefused'
elif error_id == self.XkbOD_NonXkbServer:
error_name = 'XkbOD_NonXkbServer'
elif error_id == self.XkbOD_BadServerVersion:
error_name = 'XkbOD_BadServerVersion'
else:
error_name = _('undefined')
error_message = \
_('"XkbOpenDisplay" reported an error (%(error_name)s).') % \
{'error_name': error_name}
raise OSError(error_message)
# return display handle and all function arguments
return (ctypes.c_uint(result), args)
# connect error handler to function
self.__XkbOpenDisplay__.errcheck = errcheck_xkbopendisplay
# define "ctypes" prototype for the function
#
# Bool XkbGetState(display, device_spec, state_return)
#
# Display * display;
# unsigned int device_spec;
# XkbStatePtr state_return;
paramflags_xkbgetstate = \
(1, 'display'), \
(1, 'device_spec'), \
(3, 'state_return')
prototype_xkbgetstate = ctypes.CFUNCTYPE( \
ctypes.c_int, # Python 2.5 doesn't yet know c_bool \
ctypes.c_uint, \
ctypes.c_uint, \
ctypes.POINTER(self.XkbStateRec) \
)
# set-up function (low-level)
self.__XkbGetState__ = prototype_xkbgetstate( \
('XkbGetState', library_xf86misc), \
paramflags_xkbgetstate \
)
# define error handler
def errcheck_xkbgetstate(result, func, args):
# print debugging information if requested
if self.DEBUG_XKB:
print
print ' [XkbGetState]'
print ' Status: %s' % result
print ' display: %#010x' % args[0].value
print ' device_spec: %d\n' % args[1].value
print ' state_return.group: %d' % \
args[2].group
print ' state_return.locked_group: %d' % \
args[2].locked_group
print ' state_return.base_group: %d' % \
args[2].base_group
print ' state_return.latched_group: %d' % \
args[2].latched_group
print ' state_return.mods: %d' % \
args[2].mods
print ' state_return.base_mods: %d' % \
args[2].base_mods
print ' state_return.latched_mods: %d' % \
args[2].latched_mods
print ' state_return.locked_mods: %d' % \
args[2].locked_mods
print ' state_return.compat_state: %d' % \
args[2].compat_state
print ' state_return.grab_mods: %d' % \
args[2].grab_mods
print ' state_return.compat_grab_mods: %d' % \
args[2].compat_grab_mods
print ' state_return.lookup_mods: %d' % \
args[2].lookup_mods
print ' state_return.compat_lookup_mods: %d' % \
args[2].compat_lookup_mods
print ' state_return.ptr_buttons: %d\n' % \
args[2].ptr_buttons
print ' Mask mods base_mods latched_mods locked_mods compat_state'
print ' --------------------------------------------------------------------------'
print ' ShiftMask %-5s %-5s %-5s %-5s %-5s' % \
((args[2].mods & self.ShiftMask) != 0, \
(args[2].base_mods & self.ShiftMask) != 0, \
(args[2].latched_mods & self.ShiftMask) != 0, \
(args[2].locked_mods & self.ShiftMask) != 0, \
(args[2].compat_state & self.ShiftMask) != 0)
print ' LockMask %-5s %-5s %-5s %-5s %-5s' % \
((args[2].mods & self.LockMask) != 0, \
(args[2].base_mods & self.LockMask) != 0, \
(args[2].latched_mods & self.LockMask) != 0, \
(args[2].locked_mods & self.LockMask) != 0, \
(args[2].compat_state & self.LockMask) != 0)
print ' ControlMask %-5s %-5s %-5s %-5s %-5s' % \
((args[2].mods & self.ControlMask) != 0, \
(args[2].base_mods & self.ControlMask) != 0, \
(args[2].latched_mods & self.ControlMask) != 0, \
(args[2].locked_mods & self.ControlMask) != 0, \
(args[2].compat_state & self.ControlMask) != 0)
print ' Mod1Mask %-5s %-5s %-5s %-5s %-5s' % \
((args[2].mods & self.Mod1Mask) != 0, \
(args[2].base_mods & self.Mod1Mask) != 0, \
(args[2].latched_mods & self.Mod1Mask) != 0, \
(args[2].locked_mods & self.Mod1Mask) != 0, \
(args[2].compat_state & self.Mod1Mask) != 0)
print ' Mod2Mask %-5s %-5s %-5s %-5s %-5s' % \
((args[2].mods & self.Mod2Mask) != 0, \
(args[2].base_mods & self.Mod2Mask) != 0, \
(args[2].latched_mods & self.Mod2Mask) != 0, \
(args[2].locked_mods & self.Mod2Mask) != 0, \
(args[2].compat_state & self.Mod2Mask) != 0)
print ' Mod3Mask %-5s %-5s %-5s %-5s %-5s' % \
((args[2].mods & self.Mod3Mask) != 0, \
(args[2].base_mods & self.Mod3Mask) != 0, \
(args[2].latched_mods & self.Mod3Mask) != 0, \
(args[2].locked_mods & self.Mod3Mask) != 0, \
(args[2].compat_state & self.Mod3Mask) != 0)
print ' Mod4Mask %-5s %-5s %-5s %-5s %-5s' % \
((args[2].mods & self.Mod4Mask) != 0, \
(args[2].base_mods & self.Mod4Mask) != 0, \
(args[2].latched_mods & self.Mod4Mask) != 0, \
(args[2].locked_mods & self.Mod4Mask) != 0, \
(args[2].compat_state & self.Mod4Mask) != 0)
print ' Mod5Mask %-5s %-5s %-5s %-5s %-5s' % \
((args[2].mods & self.Mod5Mask) != 0, \
(args[2].base_mods & self.Mod5Mask) != 0, \
(args[2].latched_mods & self.Mod5Mask) != 0, \
(args[2].locked_mods & self.Mod5Mask) != 0, \
(args[2].compat_state & self.Mod5Mask) != 0)
# return function return value and all function arguments
return (result, args)
# connect error handler to function
self.__XkbGetState__.errcheck = errcheck_xkbgetstate
# define high-level version of "XkbOpenDisplay"
def XkbOpenDisplay(self, display_name, major_in_out, minor_in_out):
# if we don't do type checking, nobody ever will
assert (type(display_name) == types.NoneType) or \
(type(display_name) == types.StringType)
assert type(major_in_out) == types.IntType
assert type(minor_in_out) == types.IntType
# convert function arguments to "ctypes", ...
__display_name__ = ctypes.c_char_p(display_name)
__major_in_out__ = ctypes.c_int(major_in_out)
__minor_in_out__ = ctypes.c_int(minor_in_out)
# ... call low-level function ...
ret = self.__XkbOpenDisplay__(__display_name__, __major_in_out__, \
__minor_in_out__)
# ... and return converted return value and function arguments
return {'display_handle': ret[0].value, \
'server_major_version': ret[1][3].value, \
'server_minor_version': ret[1][4].value}
# define high-level version of "XkbGetState"
def XkbGetState(self, display_handle, device_spec):
# if we don't do type checking, nobody ever will
assert type(display_handle) == types.LongType
assert type(device_spec) == types.IntType
# convert function arguments to "ctypes", ...
__display_handle__ = ctypes.c_uint(display_handle)
__device_spec__ = ctypes.c_uint(device_spec)
__xkbstaterec__ = self.XkbStateRec()
# ... call low-level function ...
ret = self.__XkbGetState__(__display_handle__, __device_spec__, \
__xkbstaterec__)
# ... and return converted function argument
xkbstaterec = ret[1][2]
return xkbstaterec
# extract modifier status using bitmasks
def ExtractLocks(self, xkbstaterec):
return {'group': xkbstaterec.group, \
'shift': \
(xkbstaterec.base_mods & self.ShiftMask) != 0, \
'shift_lock': \
(xkbstaterec.locked_mods & self.ShiftMask) != 0, \
'lock': \
(xkbstaterec.base_mods & self.LockMask) != 0, \
'lock_lock': \
(xkbstaterec.locked_mods & self.LockMask) != 0, \
'control': \
(xkbstaterec.base_mods & self.ControlMask) != 0, \
'control_lock': \
(xkbstaterec.locked_mods & self.ControlMask) != 0, \
'mod1': \
(xkbstaterec.base_mods & self.Mod1Mask) != 0, \
'mod1_lock': \
(xkbstaterec.locked_mods & self.Mod1Mask) != 0, \
'mod2': \
(xkbstaterec.base_mods & self.Mod2Mask) != 0, \
'mod2_lock': \
(xkbstaterec.locked_mods & self.Mod2Mask) != 0, \
'mod3': \
(xkbstaterec.base_mods & self.Mod3Mask) != 0, \
'mod3_lock': \
(xkbstaterec.locked_mods & self.Mod3Mask) != 0, \
'mod4': \
(xkbstaterec.base_mods & self.Mod4Mask) != 0, \
'mod4_lock': \
(xkbstaterec.locked_mods & self.Mod4Mask) != 0, \
'mod5': \
(xkbstaterec.base_mods & self.Mod5Mask) != 0, \
'mod5_lock': \
(xkbstaterec.locked_mods & self.Mod5Mask) != 0}
</code></pre>
<p>To call state to a dictionary,from another file, just call <code>from FILENAME import *</code> and do the following:</p>
<pre><code># simple demonstration of this wrapper
xkb = SimpleXkbWrapper()
# initialise wrapper for the X Keyboard Extension (v1.0) and
# open connection to default X display
display_name = None
major_in_out = 1
minor_in_out = 0
try:
ret = xkb.XkbOpenDisplay(display_name, major_in_out, minor_in_out)
except OSError, error:
print
print ' Error: %s' % error
print
exit(1)
# ... get modifier state of core keyboard ...
display_handle = ret['display_handle']
device_spec = xkb.XkbUseCoreKbd
xkbstaterec = xkb.XkbGetState(display_handle, device_spec)
# ... and extract and the information we need
print xkb.ExtractLocks(xkbstaterec)
</code></pre>
<p>Cheers to the creator whose code can be found <a href="http://wiki.neo-layout.org/browser/linux/osd/SimpleXkbWrapper.py" rel="nofollow">here</a>, and to <a href="http://stackoverflow.com/users/94977/jason-orendorff">Jason Orendorffl</a> (below) for drawing my attention to it.</p>
http://stackoverflow.com/questions/1863587/java-daemon-handling-shutdown-requests1Java daemon - handling shutdown requestsWilliam2009-12-07T23:16:57Z2009-12-08T01:23:57Z
<p>I'm currently working on a daemon that will be doing A LOT of different tasks. It's multi threaded and is being built to handle almost any kind of internal-error without crashing. Well I'm getting to the point of handling a shutdown request and I'm not sure how I should go about doing it.</p>
<p>I have a shutdown hook setup, and when it's called it sets a variable telling the main daemon loop to stop running. The problem is, this daemon spawns multiple threads and they can take a long time. For instance, one of these threads could be converting a document. Most of them will be quick (I'm guessing under 10 seconds), but there will be threads that can last as long as 10+ minutes.</p>
<p>What I'm thinking of doing right now is when a shutdown hook has been sent, do a loop for like 5 seconds on ThreadGroup.activeCount() with a 500ms (or so) Sleep (all these threads are in a ThreadGroup) and before this loop, I will send a notification to all threads telling them a shutdown request has been called. Then they will have to instantly no matter what they're doing cleanup and shutdown.</p>
<p>Anyone else have any suggestions? I'm interested in what a daemon like MySQL for instance does when it gets told to stop, it stops instantly. What happens if like 10 query's are running that are very slow are being called? Does it wait or does it just end them. I mean servers are really quick, so there really isn't any kind of operation that I shouldn't be able to do in less than a second. You can do A LOT in 1000ms now days.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1841393/writing-daemon-in-objective-c1Writing daemon in objective cNirvana2009-12-03T14:18:52Z2009-12-04T13:48:14Z
<p>I need to write a daemon, much like windows service on os x using objective c.
Can anyone point to some sample? or guide me about how to do this?</p>
http://stackoverflow.com/questions/1840162/writing-daemon-in-objective-c0Writing daemon in objective cNirvana2009-12-03T14:24:04Z2009-12-03T14:27:30Z
<p>I need to write a daemon, much like windows service on os x using objective c. Can anyone point to some sample? or guide me about how to do this?</p>
http://stackoverflow.com/questions/1806094/organizing-logs-with-log4j0Organizing logs with log4jWilliam2009-11-26T23:21:09Z2009-12-01T19:31:54Z
<p>Hey all,</p>
<p>I'm currently working on a Linux daemon written in Java. What is the common naming scheme for logs?</p>
<p>Right now I'm thinking of doing something like:</p>
<p><strong>DEBUG</strong> = <i>/var/log/myapp.debug</i><br />
<strong>INFO</strong> = <i>/var/log/myapp.info</i><br />
<strong>WARN</strong> = <i>/var/log/myapp.warn</i><br />
<strong>ERROR</strong> = <i>/var/log/myapp.err</i><br />
<strong>FATAL</strong> = <i>/var/log/myapp.err</i><br /></p>
<p>Does anyone have any opinions / suggestions on the naming scheme? I will accept the answer that I end up going with.</p>
<p>Hopefully this question doesn't get closed since there are other topics similar that are opinion related (like what IDE do you prefer, etc)</p>
http://stackoverflow.com/questions/621802/choosing-and-deploying-a-comet-server7Choosing and deploying a comet server.antileet2009-03-07T12:51:53Z2009-11-30T07:45:54Z
<p>I want to push data to the browser over HTTP without killing my django/python application.</p>
<p>I decided to use a comet server, to proxy requests between my application and the client (though I still haven't really figured it out properly).</p>
<p>I've looked into the following engines:
orbited
cometd
ejabberd
jetty</p>
<p>Has anyone had any experience working with these servers and deploying them? Any insight and links regarding the topics would be great. Thank you.</p>
http://stackoverflow.com/questions/1810623/what-and-how-much-overheads-happen-when-i-use-a-reference-class1What and how much overheads happen when I use a Reference class?DKSRathore2009-11-27T21:01:54Z2009-11-29T08:01:57Z
<p>I saw there is a daemon thread running whenever we create a referenced object using any Reference class like </p>
<pre><code> WeakReference,
FinalReference,
SoftReference,
PhantomReference,
Referemce
</code></pre>
<p>And if we have hierarchal thread structure then at each level there is an extra daemon thread initiated.</p>
http://stackoverflow.com/questions/1309879/java-service-wrapper-3-2-3-on-mac-os-x-64-bit0Java Service Wrapper 3.2.3 on Mac OS X 64-bitKevin Wong2009-08-21T02:53:03Z2009-11-26T23:00:02Z
<p>What's the best way to run an app using Java Service Wrapper 3.2.3 on Mac OS X 64-bit?</p>
<p><code>sh.script.in</code> works, but there is no macosx-universal-64 version of the wrapper native binary (on JSW's 3.2.3 downloads page anyway <a href="http://wrapper.tanukisoftware.org/downloads/3.2.3/" rel="nofollow">http://wrapper.tanukisoftware.org/downloads/3.2.3/</a>).</p>
<p>The result is the following error in the logs:</p>
<pre><code>INFO | jvm 1 | 2009/08/20 14:47:15 | WARNING - Unable to load the Wrapper's native library because none of the
INFO | jvm 1 | 2009/08/20 14:47:15 | following files:
INFO | jvm 1 | 2009/08/20 14:47:15 | libwrapper-macosx-x86-64.jnilib
INFO | jvm 1 | 2009/08/20 14:47:15 | libwrapper-macosx-universal-64.jnilib
INFO | jvm 1 | 2009/08/20 14:47:15 | libwrapper.jnilib
INFO | jvm 1 | 2009/08/20 14:47:15 | could be located on the following java.library.path:
INFO | jvm 1 | 2009/08/20 14:47:15 | /Applications/EngineManager/.
INFO | jvm 1 | 2009/08/20 14:47:15 | Please see the documentation for the wrapper.java.library.path
INFO | jvm 1 | 2009/08/20 14:47:15 | configuration property.
INFO | jvm 1 | 2009/08/20 14:47:15 | System signals will not be handled correctly.
</code></pre>
<p>Also, when I try to restart the system, I get an error like:</p>
<pre><code>Logout has timed out because the application ...WrapperSimpleApp failed to quit. ...`
</code></pre>
<p>I can't upgrade to a newer version of JSW because they went GPL.</p>
http://stackoverflow.com/questions/1804760/linux-daemon-written-in-java-location2Linux Daemon written in Java locationWilliam2009-11-26T16:54:34Z2009-11-26T22:36:07Z
<p>I'm currently writing a Java daemon. I'm writing a script that will have the standard daemon commands (start, stop, restart, status) and I'm trying to decide on where things should go when installing the daemon.</p>
<p>My current idea is:<br />
<strong>PID File:</strong> <i>/var/run/myapp.pid</i><br />
<strong>Daemon Script:</strong> <i>/etc/init.d/myapp</i><br />
<strong>Java App (.jar):</strong> <i>/usr/bin/myapp</i><br />
<strong>Logs:</strong> <i>/var/log/myapp.err</i>, <i>/var/log/myapp.log</i>, <i>/var/log/myapp.info</i> (you get the idea)<br />
<strong>Configs:</strong> <i>/etc/myapp.conf</i> (or <i>/etc/myapp/configs-go-here</i> if I have more than one in the future)</p>
<p>I'm still new to the Linux directory structure so if I'm doing something wrong let me know. Whats confusing me the most is that my Java app is a .jar file (archive) and not a binary. So does that mean that <i>/usr/bin/</i> isn't the "right" place for it?</p>
http://stackoverflow.com/questions/758466/suggestions-for-a-daemon-that-accepts-zip-files-for-processing1suggestions for a daemon that accepts zip files for processingmatt2009-04-16T23:41:04Z2009-11-25T19:28:50Z
<p>im looking to write a daemon that:</p>
<ul>
<li>reads a message from a queue (sqs, rabbit-mq, whatever ...) containing a path to a zip file</li>
<li>updates a record in the database saying something like "this job is processing"</li>
<li>reads the aforementioned archive's contents and inserts a row into a database w/ information culled from file meta data for each file found</li>
<li>duplicates each file to s3</li>
<li>deletes the zip file</li>
<li>marks the job as "complete"</li>
<li>read next message in queue, repeat</li>
</ul>
<p>this should be running as a service, and initiated by a message queued when someone uploads a file via the web frontend. the uploader doesn't need to immediately see the results, but the upload be processed in the background fairly expediently.</p>
<p>im fluent with python, so the very first thing that comes to mind is writing a simple server with twisted to handle each request and carry out the process mentioned above. but, ive never written anything like this that would run in a multi-user context. its not going to service hundreds of uploads per minute or hour, but it'd be nice if it could handle several at a time, reasonable. i also am not terribly familiar with writing multi-threaded applications and dealing with issues like blocking. </p>
<p>how have people solved this in the past? what are some other approaches i could take?</p>
<p>thanks in advance for any help and discussion!</p>
http://stackoverflow.com/questions/1774964/seriously-speeding-up-php5Seriously speeding up PHP?Lee2009-11-21T08:49:28Z2009-11-22T01:45:25Z
<p>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 someone tells my server they want the page served.</p>
<p>I've experimented with caching, FastCGI, the Zend Job Queue (and symfony plug-ins that do similar - as well as my own DB-based solutions that implement the System_Daemon class to run background processes) and I've managed to make my apps fairly quick using all that stuff... but I can't get over the mental block that my settings files, system/environment check functions, and all the stuff that should only really be loaded ONCE... loads every darn time someone hits my page.</p>
<p><strong>So, my ramble leads to the following Q--</strong></p>
<p>Is there some method/technique for loading certain aspects of PHP into RAM so that when that page is requested, all my settings.yml files, system checks, framework files, cached pages etc can be loaded directly from memory without ever even touching the HD... or needing to go through the same loading mechanism 50,000 times per day to init the program?</p>
<p>If there's nothing in PHP... are there any other 'web' languages that can be compiled in this way, to allow for true init-once apps?</p>
http://stackoverflow.com/questions/1723997/how-to-use-the-cachegrind-output-to-optimize-the-application1How to use the cachegrind output to optimize the applicationgeekGod2009-11-12T17:33:40Z2009-11-19T14:18:01Z
<p>I need to improve the throughput of the system.</p>
<p>The usual cycle of optimization has been done and we have already achieved 1.5X better throughput.</p>
<p>I am now beginning to wonder if I can utilize the cachegrind output to improve the system's throughput.</p>
<p>Can somebody point me to how to begin on this?</p>
<p>What I understand is we need to ensure most frequently used data should be kept small enough so that it remains in L1 cache and the next set of data should fit in the L2.</p>
<p>Is this the right direction I am taking?</p>
http://stackoverflow.com/questions/1757689/load-ruby-on-rails-models-without-loading-the-entire-framework0Load Ruby on Rails models without loading the entire frameworkepochwolf2009-11-18T17:26:59Z2009-11-18T20:50:15Z
<p>I'm looking to create a custom daemon that will run various database tasks such as delaying mailings and user notifications (each notice is a separate row in the notifications table). I don't want to use <code>script/runner</code> or <code>rake</code> to do these tasks because it is possible that some of the tasks only require the create of one or two database rows or thousands of rows depending on the task. I don't want the overhead of launching a ruby process or loading the entire rails framework for each operation. I plan to keep this daemon in memory full time.</p>
<p>To create this daemon I would like to use my models from my ruby on rails application. I have a number of rails plugins such as <code>acts_as_tree</code> and <code>AASM</code> that I will need loaded if I where to use the models. Some of the plugins I need to load are custom hacks on ActiveRecord::Base that I've created. (I am willing to accept removing or recoding some of the plugins if they need components from other parts of rails.)</p>
<p>My questions are </p>
<ul>
<li>Is this a good idea?</li>
<li>And - Is this possible to do in a way that doesn't have me manually including each file in my models and plugins?</li>
</ul>
<p>If not a good idea</p>
<ul>
<li>What is a good alternative?</li>
</ul>
<p>(I am not apposed to doing writing my own SQL queries but I would have to add database constraints and a separate user for the daemon to prevent any stupid accidents. Given my lack of familiarity with configuring a database, I would like to use active record as a crutch.)</p>
http://stackoverflow.com/questions/1733053/how-can-a-perl-cgi-script-communicate-with-a-daemon-on-the-webserver1How can a Perl CGI script communicate with a daemon on the webserver?mtanish2009-11-14T02:42:12Z2009-11-18T08:04:43Z
<p>I am building a Web interface to monitor an embedded system.
I have built a Perl script which runs remote commands and gathers output from that system.
Now what I need is a Web interface which makes calls to this script (executes remotes command) and displays data on the web page. </p>
<p>First of all, I need to make my script as a daemon process
which can accept requests from the Web Server.
I can choose any server-side technology as long as it can communicate with this Perl script. To keep it simple, I can choose Perl/CGI which can talk to this daemon Perl script.</p>
<p>What is the best way to communicate with this daemon script?
I haven't decided on how the communication needs to be—sockets or anything else.</p>
<p>Are there Perl modules already available which can make my message passing simpler
without me worrying about how the communication takes place? I have remote commands in plain text and might want to have the data back in XML/JSON.</p>
http://stackoverflow.com/questions/1746207/how-to-ipc-between-php-clients-and-a-c-daemon-server3How to IPC between PHP clients and a C Daemon Server?Alex2009-11-17T02:23:02Z2009-11-17T04:49:09Z
<p>Hi all, and thanks for taking a look at the question.</p>
<p><strong>The background</strong><br>
I have several machines that continuously spawn multiple (up to 300) PHP console scripts in a very short time frame. These scripts run quickly (less than a second) and then exit. All of these scripts need read only access to a large <a href="http://en.wikipedia.org/wiki/Trie" rel="nofollow">trie</a> structure which would be very expensive to load into memory each time each one of the scripts runs. The server runs Linux.</p>
<p><strong>My solution</strong><br>
Create a C daemon that keeps the trie structure in memory and receives requests from the PHP clients. It would receive a request from every one of the PHP clients, perform the lookup on the memory structure and respond with the answer, saving the PHP scripts from doing that work. Both requests and responses are short strings (no longer than 20 characters)</p>
<p><strong>My problem</strong><br>
I am very new to C daemons and inter process communication. After much research, I have narrowed the choices down to Message Queues and Unix domain sockets. Message Queues seem adequate because I think (I may be wrong) that they queue up all of the requests for the daemon to answer them serially. Unix domain sockets seem to be easier to use, though. However, I have various questions I have not been able to find answers to:</p>
<ol>
<li>How can a PHP script send and receive messages or use a UNIX socket to communicate with the daemon? Conversely how does the C daemon keep track of which PHP process it has to send a reply to? </li>
<li>Most examples of daemons I have seen use an infinite while loop with a sleep condition inside. My daemon needs to service many connections that can come at any time, and response latency is critical. How would the daemon react if the PHP script sends a request while it is sleeping? I have read about poll and epoll, would this be the correct way to wait for a received message? </li>
<li>Each PHP process will always send one request, and then will wait to receive a response. I need to make sure that if the daemon is down / unavailable, the PHP process will wait for a response for a set maximum time, and if no answer is received will continue regardless instead of hanging. Can this be done?</li>
</ol>
<p>The actual lookup of the data structure is very fast, I don't need any complex multi-threading or similar solution, as I believe handling the requests in a FIFO manner will be enough. I also need to keep it simple stupid, as this is a mission critical service, and I am fairly new to this type of program. (I know, but I really have no way around this, and the learning experience will be great)</p>
<p>I would really appreciate code snippets that shine some light into the specific questions that I have. Links to guides and pointers that will further my understanding into this murky world of low level IPC are also welcome.</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/1740308/create-a-daemon-with-double-fork-in-ruby2Create a daemon with double-fork in Rubyjhs2009-11-16T05:53:05Z2009-11-16T13:50:06Z
<p><strong>What is the proper way to create a well-behaved Unix or Linux daemon in Ruby?</strong></p>
<p>What is the definition of a well-behaved daemon anyway, and how would one write such a program in Ruby?</p>
http://stackoverflow.com/questions/1735382/windows-smtp-server-for-email-api0Windows SMTP server for email apiJason Denizac2009-11-14T19:47:41Z2009-11-14T19:48:53Z
<p>Hi,</p>
<p>I'm architecting a web service where users can update, for example, a blog by sending an email. What's a good email server for Windows for this? Any other advice / examples appreciated!</p>
<p>Thanks,
Jason</p>
http://stackoverflow.com/questions/646928/is-it-wise-to-use-php-for-a-daemon7Is it wise to use PHP for a daemon?Abs2009-03-14T23:29:52Z2009-11-14T16:55:06Z
<p>Hello all,</p>
<p>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 get some advice if I should make use of PHP in this way.</p>
<p>Here are my requirements for a daemon.</p>
<ul>
<li>Continuously check if a row has been
added to MySQL database table</li>
<li>Run FFmpeg commands on what was
retrieved from database</li>
<li>Insert output into MySQL table</li>
</ul>
<p>I am not sure what else I can offer to help make this decision. Just to add, I have not done C before. Only Java and PHP and basic bash scripting.</p>
<p>Does it even make that much of a performance difference?</p>
<p>Please allow for my ignorance, I am learning! :)</p>
<p>Thanks all</p>
http://stackoverflow.com/questions/1722993/multiple-programs-using-the-same-udp-port-possible0Multiple programs using the same UDP port? Possible?ThantiK2009-11-12T15:22:37Z2009-11-12T16:47:22Z
<p>I currently have a small Python script that I'm using to spawn multiple executables, (voice chat servers), and in the next version of the software, the servers have the ability to receive heartbeat signals on the UDP port. (There will be possibly thousands of servers on one machine, ranging from ports 7878 and up)</p>
<p>My problem is that these servers might (read: will) be running on the same machine as my Python script and I had planned on opening a UDP port, and just sending the heartbeat, waiting for the reply, and voila...I could restart servers when/if they weren't responding by killing the task and re-loading the server.</p>
<p>Problem is that I cannot open a UDP port that the server is already using. Is there a way around this? The project lead is implementing the heartbeat still, so I'm sure any suggestions in how the heartbeat system could be implemented would be welcome also. -- This is a pretty generic script though that might apply to other programs so my main focus is still communicating on that UDP port.</p>
http://stackoverflow.com/questions/1691041/how-to-mimic-dropbox-functionality-with-ruby-script0How to mimic DropBox functionality with Ruby script?viatropos2009-11-06T22:48:19Z2009-11-06T23:11:42Z
<p>I would like to upload documents to GoogleDocs every time the OS hears that a file was added/dragged/saved in a designated folder, just the way DropBox uploads a file when you save it in the DropBox folder.</p>
<p>What would this take in Ruby, what are the parts?</p>
<ul>
<li>How do you listen for when a File is Saved?</li>
<li>How do you listen for when a File is added to a Folder?</li>
</ul>
<p>I understand how to use the GoogleDocs API and upload things once I get these events, but I'm not sure how this would work.</p>
http://stackoverflow.com/questions/1661210/why-does-my-python-daemon-hog-all-my-cpu-while-sleeping0Why does my Python daemon hog all my CPU while sleeping?Hobhouse2009-11-02T13:05:51Z2009-11-02T13:47:39Z
<p>I'm using this recipe: <a href="http://code.activestate.com/recipes/278731/" rel="nofollow">http://code.activestate.com/recipes/278731/</a> on an Ubuntu server.</p>
<p>I make a daemon instance like this:</p>
<pre><code>class MyDaemon(Daemon):
def run(self):
while True:
try:
do_my_data_processing()
except MySQLdb.OperationalError:
# Sleep an extra 30 seconds if database is away.
time.sleep(30)
time.sleep(30)
</code></pre>
<p>The problem is that even while sleeping the daemon takes up almost all available CPU power.</p>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/891871/connect-php-code-to-java-backend2Connect PHP code to Java backendThoaiOnline2009-05-21T08:17:53Z2009-10-29T22:52:17Z
<p>I am implementing a website using PHP for the front end and a Java service as the back end. The two parts are as follows:</p>
<ol>
<li><p>PHP front end listens to http requests and interacts with the database.</p></li>
<li><p>The Java back end run continuously and responds to calls from the front end.</p></li>
</ol>
<p>More specifically, the back end is a daemon that connects and maintain the link to several IM services (AOL, MSN, Yahoo, Jabber...).</p>
<p>Both of the layers will be deployed on the same system (a CentOS box, I suppose) and introducing a middle layer (for instance: using XML-RPC) will reduce the performance (the resource is also rather limited).</p>
<p>Question: Is there a way to link the two layers directly? (no more web services in between)</p>
http://stackoverflow.com/questions/1599798/daemon-dies-unexpectedly1Daemon dies unexpectedlyuswaretech2009-10-21T09:53:35Z2009-10-23T14:27:30Z
<p>I have a python script, which I daemonise using this code</p>
<pre><code> def daemonise():
from os import fork, setsid, umask, dup2
from sys import stdin, stdout, stderr
if fork(): exit(0)
umask(0)
setsid()
if fork(): exit(0)
stdout.flush()
stderr.flush()
si = file('/dev/null', 'r')
so = file('daemon-%s.out'%os.getpid(), 'a+')
se = file('daemon-%s.err'%os.getpid(), 'a+')
dup2(si.fileno(), stdin.fileno())
dup2(so.fileno(), stdout.fileno())
dup2(se.fileno(), stderr.fileno())
print 'this file has the output from daemon%s'%os.getpid()
print >> stderr, 'this file has the errors from daemon%s'%os.getpid()
</code></pre>
<p>The script is in </p>
<pre><code>while True: try: funny_code(); sleep(10); except:pass;
</code></pre>
<p>loop. It runs fine for a few hours and then dies unexpectedly. How do I go about debugging such demons, err daemons.</p>
<p>[Edit]</p>
<p>Without starting a process like monit, is there a way to write a watchdog in python, which can watch my other daemons and restart when they go down? (Who watches the watchdog.)</p>
http://stackoverflow.com/questions/1568990/stateful-processes-daemons-in-tomcat2stateful processes (daemons?) in Tomcat?Jason S2009-10-14T21:03:51Z2009-10-14T21:35:09Z
<p>I'm not exactly sure what question to ask here since I don't know the vocabulary...</p>
<p>Tomcat servlets (and any server for that matter) work nicely if they are stateless and respond quickly to requests, with state stored in a database. It seems like if I have long-running operations then maybe I want to run some other service in the background, and have the Tomcat handlers communicate with it. Is there a way to run a long-running Java application in the same JVM as Tomcat and interact with it via "regular" Tomcat servlet?</p>
<p><hr /></p>
<p><strong>Example:</strong> Let's say I want to offer a RESTful number factorization service in HTTP. </p>
<p>Here's a possible scenario (I hope I have the HTTP syntax right, I'm omitting most of the headers):</p>
<pre><code># comments start with #, > = request, < = response
#
# first we create a queue
> POST /factorizer/create-queue
> {information here}
< queue=12345B
# then we post some numbers to it
> POST /factorizer/queue/12345B
> 123
> 456
> 678
> 12345678901234567890123456789
< OK
# let's look at the status
> GET /factorizer/queue/12345B/status
< requested=4
< processed=3
# query
> GET /factorizer/queue/12345B/7
< Error: invalid index
> GET /factorizer/queue/12345B/3
< Error: not complete
> GET /factorizer/queue/12345B/0
< 123=3*41
# wait a while
> GET /factorizer/queue/12345B/status
< requested=4
< processed=4
> GET /factorizer/queue/12345B/3
< 12345678901234567890123456789=3*3*3*7*13*31*37*211*241*2161*3607*3803*2906161
</code></pre>
<p>I can think of how to write the servlet to handle the queries, but how could I go about implementing a daemon / independently-running service in the same JVM?</p>
<p><strong>edit:</strong> In the above example, what I would like to do is to have a background application that runs autonomously, with work queues, to factor prime numbers, and has a Java interface that supports the operations that the Tomcat servlets could use to expose the service to the web. Then I don't have to worry about the web interface or HTTP in my background app, and I don't have to worry about multithreading issues or prime factorization in my servlets.</p>
http://stackoverflow.com/questions/660366/rails-daemon-stays-in-development-mode0Rails Daemon stays in development modevrish882009-03-18T22:32:30Z2009-10-14T02:08:25Z
<p>Hello! I have a Rails application with a daemon that checks a mailbox for any new emails. I am using the <a href="http://github.com/look/fetcher/tree/master" rel="nofollow">Fetcher</a> plugin for this task. The daemon file looks like this:</p>
<pre><code>#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../config/environment.rb'
class MailFetcherDaemon < Daemon::Base
@config = YAML.load_file("#{RAILS_ROOT}/config/mail.yml")
@config = @config['production'].to_options
@sleep_time = @config.delete(:sleep_time) || 20
def self.start
puts "Starting MailFetcherDaemon"
# Add your own receiver object below
@fetcher = Fetcher.create({:receiver => MailProcessor}.merge(@config))
...
</code></pre>
<p>So I have it grab the new emails, parse them and create a resource from the parsed data. But when it tries to save the resource an exception is thrown. This is because the script is automatically assigned the development environment. So it is using my development database configuration instead of the production environment (which is the config that I want). </p>
<p>I have tried starting the script with:</p>
<pre><code> rails-root$ RAILS_ENV=production; script/mail_fetcher start
</code></pre>
<p>but to no avail. It seems like when I load the environment.rb file it just defaults to the development environment and loads development.rb and the development database configuration from database.yml.</p>
<p>Thoughts? Suggestions?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1550163/threads-in-a-j2ee-application1Threads in a J2EE applicationUmar2009-10-11T08:13:48Z2009-10-11T10:45:50Z
<p>I have a J2EE application that has two components: First is a service that scrapes some information from internet and fills it into database. Second is a web interface (deployed on tomcat) from where user can browse that information.</p>
<p>What could be the best approach to implement the first component? Should it be run as a background Daemon/Service or a thread within the container?</p>
http://stackoverflow.com/questions/1530785/developing-a-osx-deamon-that-runs-before-user-login-using-xcode0developing a osx deamon that runs before user login using xcode.vaps2009-10-07T10:31:48Z2009-10-07T11:18:10Z
<p>Hi I am trying to develop a daemon using objective-C/xcode.</p>
<p>I am new to mac world and can I get an idea of what project template to choose in xcode and how to do it.</p>
<p>Can I get a simple and basic daemon sample source code ? </p>
http://stackoverflow.com/questions/1519793/is-it-a-bad-idea-to-write-a-multithreaded-tcp-server-daemon-in-perl0Is it a bad idea to write a multithreaded TCP server daemon in Perl?someguy2009-10-05T12:29:21Z2009-10-05T18:43:45Z
<p>Is it a bad idea to write multithreaded programs (specifically, TCP server daemons) in Perl?</p>