2

我在 Ruby 中启动后台进程时遇到了一些困难。

我现在有这个代码。

#!/usr/bin/env ruby -w
require "daemons"
require 'rubygems'

path = "#{File.expand_path(File.dirname(__FILE__))}/.."

Daemons.run_proc('stalker',{
  :dir_mode => :normal,
  :dir => "#{path}/tmp/pids",
  :backtrace => true,
  :monitor => false,
  :log_output => true
}) do
  system "stalk #{path}/config/jobs.rb"
end

然后我使用script/stalker start.

问题是我无法阻止它。它将错误的 PID 保存到 pid 文件中。

像这样:

script/stalker start
=> stalker: process with pid **39756** started.

ps aux | grep ruby 
=> linus    **39781**   0,3  1,9  2522752  78864   ??  S     8:39pm   0:10.11 ruby stalk script/../config/jobs.rb

为什么第一个 pid 与使用打印的不匹配ps aux | grep ruby

我试过使用exec,%x{}和这个system来运行脚本。

4

1 回答 1

3

如果你使用run_proc,你想要守护的代码应该放在块中。启动另一个进程system没有意义(它会fork进程(给你另一个pid),然后exec是你的jobs.rb脚本。要么将代码jobs.rb移到run_proc块中,要么使用Daemons.run

于 2011-04-11T19:28:09.300 回答