我想运行一个 ruby mongrel 脚本作为我的供应系统 (CHEF) 的最后一步。因此,我编写了一个新贵 .conf 文件,其中包含以下条目:
#!upstart
description "mongrel server"
author "daniele"
start on startup
stop on shutdown
# Automatically restart process if crashed
respawn
# Essentially lets upstart know the process will detach itself to the background
expect fork
# Run before process
pre-start script
end script
# Start the process
script
cd /vagrant/trunk
/bin/sh /vagrant/trunk/script/server -p 3000 >> /home/vagrant/log.txt
end script
但是 log.txt 文件为空并正在运行 netstat -an | grep 3000 什么也没显示。我认为该脚本不可执行,但运行 chmod 并没有改变任何东西。
但是,如果我手动执行脚本,我可以启动服务器
vagrant@ubuntu10:/vagrant/trunk$ ./script/server
=> Booting Mongrel
=> Rails 2.3.4 application starting on http://0.0.0.0:3000
/usr/local/rvm/gems/ruby-1.8.7-p352/gems/rails-2.3.4/lib/rails/gem_dependency.rb:119:Warning:Gem::Dependency#version_requirements is deprecated and will be removed on or after August 2010. Use #requirement
=> Call with -d to detach
=> Ctrl-C to shutdown server
脚本的内容是:
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../config/boot'
require 'commands/server'
我使用 RVM 和 Ruby 1.8.7、Rubygems 1.3.7 在 Vagrant 上运行。引导配方是:
[...]
template "mongrel.upstart.conf" do
path "/etc/init/mongrel.conf"
source "mongrel.upstart.conf.erb"
mode 0644
owner "root"
group "root"
end
service "mongrel" do
provider Chef::Provider::Service::Upstart
supports :restart => true, :start => true, :stop => true
action [:enable, :start]
end
任何的想法?谢谢