Tagged Questions

0
votes
1answer
35 views

Ruby Daemons Gem

Hello there, 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 …
0
votes
1answer
16 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 …
1
vote
5answers
233 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 …
0
votes
2answers
45 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
35 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 …
1
vote
1answer
53 views

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

Hey there, 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 …
0
votes
3answers
231 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
251 views

problem with daemons gem in rails

Hello, 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 …
1
vote
4answers
1k views

List daemons in Ubuntu? [closed]

Hi, How would I go about finding out what daemons are running on my Ubuntu installation? ps aux works but lists everything, not just daemon processes. I'm new to the upstart system in Ubuntu, so any …
1
vote
2answers
670 views

Redirect the “puts” command output to a log file

Hi, 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 …