我在 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
来运行脚本。