Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
7answers
9k views

How to make a python script run like a service or daemon in linux

I have written a python script that checks a certain e-mail address and passes new e-mails to an external program. How can I get this script to execute 24/7, such as turning it into daemon or service ...
5
votes
1answer
343 views

Ruby Daemons log rotation

When I'm setting logging parameters to the Daemons (1.1.0) gem, how would I achieve similar behavior to this line? logger = Logger.new('foo.log', 10, 1024000) Daemon options: options = { ...
5
votes
3answers
5k views

Redirect the “puts” command output to a log file

I am working on creating a daemon in Ruby using the daemons gem. I want to add output from the daemon into a log file. So I am wondering what is the easiest way to redirect puts from the console to ...
3
votes
5answers
303 views

What is the preferred way to write my linux daemons?

Hello to All I have a PHP website that should use some cached data (stored in Memcache, for example). The data should be stored in cache by daemons fetching it from web services and some of it should ...
3
votes
3answers
967 views

Ruby Daemons causing ActiveRecord logger IOError

I'm writing a project at the moment in Ruby which makes use of the ActiveRecord gem for database interaction and I'm trying to log all the database activity using the ActiveRecord::Base.logger ...
2
votes
2answers
153 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 ...
2
votes
3answers
216 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 ...
2
votes
2answers
1k views

script/runner in rails 3

I have 2 jobs I would like to run and they are dependant on Models in my rails application. I added the ruby files in a separate folder called Jobs, that I have appended to the rail project. Whenever ...
2
votes
2answers
109 views

how can i boot rails 3 in a daemonized ruby script?

I am pulling email via pop into my Rails 3 application so i have a file called dropbox_receiver.rb in the rails lib directory. This pulls in all email and calls DropBox.receive(email) I can run ...
2
votes
3answers
626 views

daemon spawn : gem_original_require : no such file to load --daemon-spawn (Load Error)

I am trying to run daemon process using daemon-spawn gem. Here is the code for delayed_delta daemon process #file - script/dj #!/usr/bin/env ruby # -*- ruby -*- require 'rubygems' require ...
1
vote
1answer
28 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 ...
1
vote
2answers
107 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 ...
1
vote
2answers
151 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 ...
1
vote
1answer
292 views

Ruby daemons - what is a monitor and how does it work?

So Ruby's daemons gem lets you set monitor=true when you start up your process. What the heck is a monitor and what do you do with it? All you do is specify true or false...is that creating a log file ...
1
vote
1answer
48 views

Can stopping a daemon corrupt my data?

I'm using delayed_job to run some background processes on my rails app. These processes read and write to the DB as well as writing to a log file. My question is - when I stop the jobs, does it kill ...
1
vote
1answer
161 views

starting and stopping a daemon at user login logout

I have a daemon script written in ruby which responds to commands like daemon start and daemon stop. It's executable with shebang #!/usr/bin/env ruby and it works invoked from terminal. I need to ...
1
vote
1answer
566 views

How to make/monitor/deploy daemon processes in JRuby

I'm currently porting a Rails App currently using REE to JRuby so I can offer an easy-to-install JRuby alternative. I've bundled the app into a WAR file using Bundler which I'm currently deploying to ...
1
vote
4answers
533 views

Timed server events with ruby on rails

I am attempting to create a web-based game in Ruby on Rails. I have a model named 'Game', which has a datetime in the database entry that corresponds to a time that I would like the server to call ...
1
vote
1answer
221 views

Streaming, Daemons, Cronjobs, how do you use them? (in Ruby)

I've finally had a second to look into streaming, daemons, and cron tasks and all the neat gems built around them! But I'm not clear on how/when to use these things. I have a few questions: 1) If I ...
0
votes
0answers
10 views

DelayedJob/daemons doesn't always create new pid files?

I'm running delayed_job 2.0.7 (we're still on a Rails 2.x project) along with daemons 1.0.10. I'm starting delayed_job by running ./script/delayed_job start -n 2, and then restarting that by running ...
0
votes
0answers
27 views

undefined_method error calling a method inside a rails daemon

I have a daemon that has a primary processing block which is not wrapped in a method, but does call a supporting method that is contained in the same daemon class. I'm getting an undefined method ...
0
votes
0answers
42 views

How can I properly set the options for the Daemons ruby gem?

I am having trouble getting my ruby server scripts up and running with the Daemons ruby gem. My ruby server scripts run just fine from the command line via 'ruby myserver.rb', so the problem does not ...
0
votes
1answer
43 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 : ...
0
votes
0answers
67 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 ...
0
votes
0answers
65 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
95 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 ...
0
votes
2answers
154 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: ...
0
votes
0answers
114 views

Android App w/daemon + gesture control functionality

I would like to know if this is possible please Have a native android app running like a daemon, recognizing when a specific single local process and a single specific mobile application are ...
0
votes
2answers
176 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 ...
0
votes
1answer
122 views

How can I distribute a task between many process in Ruby?

I have a ruby daemon that selects 100 records from database and do a task with it. To make it faster I usually create 3 instances of the same daemon. And each one selects diferents data by using ...
0
votes
1answer
150 views

How do I run Ruby daemons as a specific user?

I am trying to run a Ruby daemon using the daemons gem. It will be started as user 'joe' but needs to change to 'www-data' once it's demonized so that it can access the files it will be working on. ...
0
votes
0answers
68 views

Perl daemon exiting without warning

I have written a daemon example. But i dont know why it is not running. When i debugged using print statment, it is exiting after the (open STDIN, '/dev/null' or die "Can't read /dev/null: $!";) ...
0
votes
1answer
183 views

Authlogic & delayed_job & delayed_jobl_mailer & daemons?

[edit] I can delay all mail using delayed_job plugin on a shared server with a daemon… except the mail using authlogic. I don't know where I have to search, and why it is working in other way. ...
0
votes
1answer
401 views

How can I create a daemon with Thor (ruby)?

I would like to use the popular Thor gem to create a daemonized task. My Thor class looks like this: require 'rubygems' require 'daemons' require 'thor' class CLI < Thor desc "start", "Startup ...
0
votes
4answers
85 views

Remote process control in Linux

I'm currently working on a project requiring a number of processes running under control of a "master" process, which receives remote commands via TCP and tells the child processes what to do (e.g.: ...
0
votes
1answer
224 views

Can't Run Delayed Job in the background on ruby 1.9.2

rake jobs:work works just fine But RAILS_ENV=development ./script/delayed_job start (or any of its permutations) doesn't work on 1.9.2. I can run it just fine on 1.9.1. Anyone have a solution for ...
0
votes
3answers
440 views

iOS daemons. are they legal for AppStore?

Can't find out if daemon application can be run on non-jailbroken iPhone. And what is Apple policy about this stuff? I don't really know if my idea is possible at all... I wonder if it's possible to ...
0
votes
1answer
71 views

Monitoring/Managing processes,deamons,threads

My problem domain is to monitor/manage, processes, threads, daemons, on a remote machine. I have not choosen a language as yet to write the tool. I am open to suggestions. Clarification: 1) By ...
0
votes
1answer
698 views

Process.daemon vs. running a Ruby script with nohup + &

I have a Ruby 1.9 script that I want to run as a long-running background process. It looks like I have a choice between calling Process.daemon inside the script to daemonize it, or I can just run ...
0
votes
2answers
85 views

Ruby/Rails: Build internal service, no http support needed

I need to build an internal service that queues the DB for changes (in one table) every one second, and processed data after this event. I do not need all the Rails stack since this service does not ...
0
votes
1answer
998 views

Ruby Daemons Gem

I installed the ruby gem Daemons. To make sure it was working I created a script that would print to a file every 5 seconds. I then created another file to run the script using the trivial example ...
0
votes
1answer
227 views

problem handling db conection on daemonize threads

Just for the record, i just started programing on python, and this is the first time i try to do a daemon. I have a problem handling DB connections in a daemon i've been working on, the first thing i ...
0
votes
1answer
353 views

How to specify daemon's log and pid directories?

Using Daemons, how do I specify that my script's log goes in /log/ and its pid goes in /tmp/pids/? I've read the docs, and I see :dir/:dir_mode, but I can only make it do one or the other, not both ...
0
votes
3answers
761 views

What's the best option for a framework-agnostic Ruby background worker library?

I'm building a simple recipe search engine with Ruby and Sinatra for an iPhone app, using RabbitMQ for my message queue. I'm looking around and finding a lot of different implementation choices for ...
0
votes
1answer
958 views

problem with daemons gem in rails

I'm using daemons gem with Rails in addition to daemon_generator plugin. I'm getting this output in the daemons log file: Logfile created on Sat May 09 20:10:35 -0700 2009 by / -below you find the ...
-2
votes
2answers
65 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.