Tagged Questions
5
votes
1answer
345 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
3answers
968 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
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
110 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
629 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
154 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
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
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
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
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
123 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
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
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
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
1k 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
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
762 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 ...