God に resque を再起動させる方法がわかりません。
Ubuntu 10.04.3 LTS Linode スライスに Rails 3.2.2 スタックがあります。実行中のシステム Ruby 1.9.3-p194 (RVM なし)。
以下を含む神の init.d サービスがあり/etc/init.d/god-service
ます。
CONF_DIR=/etc/god
GOD_BIN=/var/www/myapp.com/shared/bundle/ruby/1.9.1/bin/god
RUBY_BIN=/usr/local/bin/ruby
RETVAL=0
# Go no further if config directory is missing.
[ -d "$CONF_DIR" ] || exit 0
case "$1" in
start)
# Create pid directory
$RUBY_BIN $GOD_BIN -c $CONF_DIR/master.conf
RETVAL=$?
;;
stop)
$RUBY_BIN $GOD_BIN terminate
RETVAL=$?
;;
restart)
$RUBY_BIN $GOD_BIN terminate
$RUBY_BIN $GOD_BIN -c $CONF_DIR/master.conf
RETVAL=$?
;;
status)
$RUBY_BIN $GOD_BIN status
RETVAL=$?
;;
*)
echo "Usage: god {start|stop|restart|status}"
exit 1
;;
esac
exit $RETVAL
master.conf
上記には以下が含まれます:
load "/var/www/myapp.com/current/config/resque.god"
resque.god
上記には以下が含まれます:
APP_ROOT = "/var/www/myapp.com/current"
God.log_file = "/var/www/myapp.com/shared/log/god.log"
God.watch do |w|
w.name = 'resque'
w.interval = 30.seconds
w.dir = File.expand_path(File.join(File.dirname(__FILE__),'..'))
w.start = "RAILS_ENV=production bundle exec rake resque:work QUEUE=*"
w.uid = "deploy"
w.gid = "deploy"
w.start_grace = 10.seconds
w.log = File.expand_path(File.join(File.dirname(__FILE__), '..','log','resque-worker.log'))
# restart if memory gets too high
w.transition(:up, :restart) do |on|
on.condition(:memory_usage) do |c|
c.above = 200.megabytes
c.times = 2
end
end
# determine the state on startup
w.transition(:init, { true => :up, false => :start }) do |on|
on.condition(:process_running) do |c|
c.running = true
end
end
# determine when process has finished starting
w.transition([:start, :restart], :up) do |on|
on.condition(:process_running) do |c|
c.running = true
c.interval = 5.seconds
end
# failsafe
on.condition(:tries) do |c|
c.times = 5
c.transition = :start
c.interval = 5.seconds
end
end
# start if process is not running
w.transition(:up, :start) do |on|
on.condition(:process_running) do |c|
c.running = false
end
end
end
リロードdeploy.rb
タスクがあります:
task :reload_god_config do
run "god stop resque"
run "god load #{File.join(deploy_to, 'current', 'config', 'resque.god')}"
run "god start resque"
end
問題は、デプロイするかgod (stop|start|restart|status) resque
手動で実行するかで、次のエラー メッセージが表示されます。
The server is not available (or you do not have permissions to access it)
システムgemsにインストールgod
して、それを指すようにしましたgod-service
:
GOD_BIN=/usr/local/bin/god
しかしgod start rescue
、同じエラーが発生します。
ただし、次のようにしてサービスを開始できます。
sudo /etc/init.d/god-service start
root
したがって、おそらく権限の問題であり、おそらく init.d サービスが所有されており、ユーザーがバンドルから神を実行しているという事実に関連していると思いdeploy
ます。
この問題を回避する最善の方法は何ですか?