Daemons provides an easy way to wrap existing ruby scripts (for example a self-written server) to be run as a daemon and to be controlled by simple start/stop/restart commands.

learn more… | top users | synonyms

0
votes
0answers
32 views

Could not find daemons-1.1.9 in any of the sources

I'am getting in troubles installing a plugin to my redmine. # rake redmine:plugins:migrate RAILS_ENV=production Could not find daemons-1.1.9 in any of the sources Run `bundle install` to install ...
0
votes
0answers
18 views

Start/stop return code with Daemons Ruby gem

I've written some code that should run as a server and wrapped it with Daemons as Daemons.run('myserver.rb'). When I run it as ./daemon.rb start it works but it is not informative at all, i.e. if ...
0
votes
0answers
50 views

ruby 'daemonized' script presenting unexpected issues

I have here a script that has suddenly changed behavior and I can't work out why. As far as I know, no changes to the script have been made and neither have any changes to rubies or gems. First of ...
0
votes
0answers
17 views

How to increase number of nfs daemons without restarting nfs service

I have a strange question Normally to increase nfsd count we change RPCNFSDCOUNT value inside /etc/sysconfig/nfs file and restart nfs service /etc/init.d/nfs restart for that new value ...
0
votes
0answers
83 views

what's the meaning of the output from the command

I accidentally issue the following command: # launchctl load -w /System/Library/LaunchDaemons/ bind(): Address already in use bind(): Address already in use bind(): Address already in use bind(): ...
1
vote
0answers
45 views

Starting and stopping a daemon containing kernel threads

I want to run a c++ program that is using POSIX threads on openSUSE 12 as a daemon, and be able start, stop and restart it as a service with a normal init.d script based on this template: ...
0
votes
1answer
51 views

Launch a daemon in a simple rail application

I have been struggling for 2 days on the following problem. (I am new to Ruby/Rails) I have a simple controller and I want that controller to launch a daemon to do a background job (it read the ...
2
votes
1answer
225 views

Run Sidekiq as daemon on Ubuntu

How can I run sidekiq as daemon on Ubuntu? If I run bundle exec sidekiq -D I get invalid option: -D, is there any way to run it without some other controller, like god, upstart...?
2
votes
3answers
74 views

Which Toolkit to develop Mac OSX/Windows Daemon service

I need to develop a daemon service which also has presence in System Tray. The system tray icon allows users to customize/access some options through right click menu. It might open a window as well ...
4
votes
3answers
86 views

Running a PHP process as a daemon while safely killing it from background

We are running a PHP Daemon which look into a queue, receives worker jobs and spawns the worker to handle it. The workers themselves acquire a lock on a specific location before proceeding. We spawn ...
5
votes
0answers
85 views

How to kill all processes inside ruby Thor on stop?

Well, I have a script below using Thor for running it like a rake task and managing ARGV. #!/usr/bin/env ruby require "thor" class Run < Thor desc "start", "start script" def start p1 ...
3
votes
1answer
152 views

Ruby: Logger and Daemons

i'm using ruby 1.9.2p180 (2011-02-18 revision 30909) in Order to do the logging i use the logging gem. My program has two blocks, which are used as daemons. But logging from these blocks results in ...
0
votes
0answers
44 views

failed to start a deamond process using god gem

I am getting this error when starting god like so my config/working.god file is like so : p ROOT = Dir.pwd#File.dirname(File.dirname(__FILE__)) p Dir.pwd def generic_monitoring(w, options = {}) ...
1
vote
1answer
101 views

How do I create a daemon to run an SMTP server within a Rails stack?

I'm running a rails app which, amongst other things, needs to role it's own SMTP server. Mini-SMTP-Server looks very good, but I don't know how to get it to run as a daemon. I'd like to be able to act ...
2
votes
1answer
86 views

Daemons do not get restarted?

I am trying to run the same script in multiple daemons. myapp.rb looks like this: loop do sleep 5 1 / 0 # crash it end my myapp_controller.rb: require 'rubygems' require 'daemons' options = ...
0
votes
3answers
63 views

How to run a rake task with cron just twice?

I want to know if there is a way in RoR to run a rake task, or a ruby code, twice in different times. For example, when a user registers, run the task after three days, and then run the same task one ...
0
votes
0answers
81 views

Ruby daemon is not interacting with ActiveRecord

Very strange thing is happening, and I cannon understand why. Ruby daemon starts, processes its code, but when there is some business with activerecord - he cannot do it. I really cannot get why and ...
4
votes
1answer
124 views

How do I loop the restart of a daemon?

I am trying to use Ruby's daemon gem and loop the restart of a daemon that has its own loop. My code looks like this now: require 'daemons' while true listener = Daemons.call(:force => true) ...
2
votes
0answers
171 views

Daemonizing Mailman app

Starting my mailman app by running rails runner lib/daemons/mailman_server.rb works fine. When starting with my daemon script and command bundle exec rails runner script/daemon run ...
1
vote
1answer
136 views

Abort trap from AppleScript run from a Ruby script

I have a Ruby program that, amongst other things, executes user-defined blocks of code (the code is on Github, here). Many of these blocks contain system commands, and I'm trying to debug a very ...
3
votes
1answer
133 views

What doesn't work well with ProcessBuilder and Daemons

On the JavaDoc for ProcessBuilder it states The methods that create processes may not work well for special processes on certain native platforms, such as native windowing processes, daemon ...
2
votes
2answers
494 views

Starting and Stopping Ruby Daemons

I'm trying to start and stop an infinite loop daemon using the daemons gem. Looking at the home page, I tried (in irb): >require 'daemons' =>true >task_handle = Daemons.call do > loop{ ...
0
votes
1answer
127 views

Ruby daemons soft stop

This simple daemon (written using ruby daemons gem) prints numbers from 0 up to 9 until I stop the daemon using the stop command line option: require 'rubygems' require 'daemons' options = { ...
0
votes
0answers
71 views

Error using daemons gem in Rails 3

I am getting this error while trying to start a daemon using the gem daemons from a Rails 3 application. My application is running on nginx on ubuntu. ERROR: there is already one or more instance(s) ...
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 ...
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 ...
0
votes
1answer
232 views

Ruby - Gem Daemons - How to run several different daemons

Basically I just want to run several daemons in my ruby script : require 'daemons' Daemons.run path_1, { :ARGV => ['start'], :app_name => 'app1', :multiple => true, ... } Daemons.run ...
1
vote
1answer
536 views

ruby - can't write to logs in daemons

Normally I can write logs with Logger: //abc.rb require 'logger' logger = Logger.new('foo.log') $./abc.rb But in a Daemons I got a permission error: //xyz.rb require 'logger' require 'daemons' ...
6
votes
2answers
148 views

Connect two daemons in python

What is the best way to connect two daemons in Python? I have daemon A and B. I'd like to receive data generated by B in A's module (maybe bidirectional). Both daemons support plugins, so I'd like to ...
2
votes
1answer
141 views

How to get the pid for the first task with the Daemons gem?

I am trying to run multiple instances of the same code/script using the Daemons gem. I've been playing around with it in an IRB session and can't seem to get the functionality I'm looking for. I want ...
0
votes
0answers
59 views

Service example in os x

I have server which run's as service on windows. I need to port the same thing on os x. I read documentation and understood that in os x it is done as daemons using launchd. according to my ...
6
votes
2answers
569 views

Bad File Descriptor in Ruby Daemons

Using Ruby v1.8.7 and Daemons v1.1.8 on Mac OS X Lion, I am attempting to write a consumer process and get it run as a dameon: # config[:name] => 'idx_my_delete_consumer' # config[:daemon] => ...
0
votes
0answers
131 views

Trying to connect mailman with rails app

i justed set up mailman with the following tutorial: http://dansowter.com/mailman-guide/ Everything worked fine and in my log i can see the incoming emails. Now i realized somehow the mail deamon is ...
1
vote
1answer
236 views

bash or something else: updating configuration files programmatically?

What's the best approach to update an /etc/rc.conf configuration file programmatically? Specifically, on an arch linux machine, I want to be able to programmatically update DAEMONS=(syslog-ng ...
0
votes
1answer
836 views

How to increase number of apache processes or concurrent php files?

The problem was not in my server, it was somewhere in network or browsers... I guess some kind of policy against DDoS attacks, where you can't access multiple files on server from one IP at ...
0
votes
1answer
288 views

Running rake task from a daemon

I have a daemon that i made using the daemons gem I run it and it just closes without error, but the script doesn't seem to be actually running. I'm running a rake task from it, will daemons run ...
0
votes
1answer
598 views

Passing arguments to a ruby script

I run a file like this: ruby hello.rb world.csv data.csv How would the start file look? I have this. require 'daemons' pwd = File.dirname(File.expand_path(__FILE__)) wFile = "#{pwd}/world.csv" ...
0
votes
0answers
143 views

Tracking the processes writing to a file Unix (Solaris 8)

Relatively new to unix, so excuse me for any basic faults. The requirement is to track the processes that are writing to the file /var/adm/messages. At first I thought that only syslog is the ...
1
vote
1answer
85 views

How to add methods/modules access control in Daemons?

I want disable the rm\_rf method of the FileUtils module in Ruby scripts. When foo.rb contains: FileUtils.rm_rf(file) It should not be run by: Daemons.run("foo.rb", some_options) and should ...
0
votes
1answer
124 views

Heroku does pre load some specific gems?

Similar questions was asked on those links but the answer do not solve my problem. why does heroku not list the same gems as i have locally? Rails 3: Bundle Exec I have the following Gemfile : ...
1
vote
1answer
337 views

Ruby How to create daemon process that will spawn multiple workers

I have a script called 'worker.rb'. When ran this script will perform processing for a while (an hour lets say) and then die. I need to have another script which is going to be responsible for ...
2
votes
3answers
504 views

Java wrapper as daemon

I am using this YAJSW to run Java Daemon on my Centos 5.5 machines. The think it runs well but out of suddent I notice I get this sort of error and then it just goes down. Any help what must I do to ...
0
votes
0answers
352 views

Rails is messing up my %x() calls (or system() calls)

I've got a Rails application that needs to fork a process off to complete a long running job. I had this setup working on my Mac environment, but porting it to an OpenSUSE server seems to have broken ...
0
votes
1answer
298 views

Distributing Launch Agent and Application together for MAC OSX

I am trying to solve the following problem. The application is aimed to provide customized backup for a phone connected through the USB. When the phone is connected to the system, the application ...
2
votes
2answers
494 views

PHP Daemon in PHP 5.3

While the idea of a PHP daemon has been covered to death on here, I haven't found anything specifically related to how to do this in PHP 5.3. As I've been told, 5.3 introduced new garbage ...
0
votes
2answers
715 views

how to set a class as daemon with tomcat?

I'm new on the java universe, also new in the tomcat world. So, the issue is: I need to run a java class as a daemon. This class should be able to comunicate with the tomcat requests. In the past: ...
1
vote
2answers
943 views

Handling Input and Output of a Daemon

I want to create a daemon of a ruby program on Linux. I also want the daemon to be interactive-I want to be able to send input to the daemon through a file/pipe/the simplest method and receive output ...
-2
votes
2answers
171 views

When daemon will hog cpu?

What are the possible condition might occur for daemon to hog the cpu and makes the system very slow or moved to non-responsive state? Daemons have few threads as well.
0
votes
3answers
407 views

How to run multiple ruby daemons and handle input and output of each daemon?

Here's the code: while 1 input = gets puts input end Here's what I want to do but I have no idea how to do it: I want to create multiple instances of the code to run in the background and ...
4
votes
3answers
1k views

Can I have some code constantly run inside Django like a daemon

I'm using mod_wsgi to serve a django site through Apache. I also have some Python code that runs as a background process (dameon?). It keeps polling a server and inserts data into one of the Django ...

1 2