我是God
的新手。我正在尝试使用God
来监控我的rails应用程序运行的unicorn
进程。
这是我的上帝档案:
rails_env = ENV["RAILS_ENV"]
APP_ROOT = '/home/deployer/deploy/myproject'
RAILS_ROOT = "#{APP_ROOT}/current"
God.watch do |w|
w.name = "myproject"
w.interval = 30.seconds
w.dir = RAILS_ROOT
w.start = "cd #{RAILS_ROOT} && bundle exec unicorn_rails -E #{rails_env} -c #{RAILS_ROOT}/config/unicorn.rb -D"
w.stop = "kill -s QUIT `cat #{RAILS_ROOT}/tmp/pids/unicorn.pid`"
w.restart = "kill -s USR2 `cat #{RAILS_ROOT}/tmp/pids/unicorn.pid`"
w.start_grace = 20.seconds
w.restart_grace = 20.seconds
w.pid_file = "#{RAILS_ROOT}/tmp/pids/unicorn.pid"
w.log = "#{RAILS_ROOT}/log/unicorn.god.log"
w.uid = 'deployer'
w.gid = 'staff'
w.behavior(:clean_pid_file)
w.start_if do |start|
start.condition(:process_running) do |c|
c.interval = 5.seconds
c.running = false
end
end
w.restart_if do |restart|
restart.condition(:memory_usage) do |c|
c.above = 300.megabytes
c.times = [3, 5] # 3 out of 5 intervals
end
restart.condition(:cpu_usage) do |c|
c.above = 50.percent
c.times = 5
end
端 端
但是当我干运行以测试配置文件是否对god -c config/unicorn.god -D
有效时,我收到以下错误:
$ god -c config/unicorn.god -D
I [2013-02-07 23:51:23] INFO: Loading config/unicorn.god
I [2013-02-07 23:51:23] INFO: Syslog enabled.
I [2013-02-07 23:51:23] INFO: Using pid file directory: /home/deployer/.god/pids
E [2013-02-07 23:51:23] ERROR: PID file directory '/home/deployer/deploy/myproject/current/tmp/pids' is not writable by deployer
E [2013-02-07 23:51:23] ERROR: Log directory '/home/deployer/deploy/myproject/current/log' is not writable by deployer
E [2013-02-07 23:51:23] ERROR: Task 'myproject' is not valid (see above)
但实际上我已获得用户deployer
的两个目录的许可:
~/deploy/myproject/current$ ls -l
lrwxrwxrwx 1 deployer staff 42 Feb 7 23:24 log -> /home/deployer/deploy/myproject/shared/log
~/deploy/myproject/current/tmp$ ls -l
lrwxrwxrwx 1 deployer staff 43 Feb 7 23:24 pids -> /home/deployer/deploy/myproject/shared/pids
并且上帝进程也在deployer
下运行:
$ ps -ef | grep god
deployer 381 1 5 00:20 pts/0 00:00:00 /usr/local/rvm/gems/ruby-1.9.3-p327-falcon@global/bin/god
为什么?
答案 0 :(得分:1)
我有类似的问题。
当我删除w.gid
行时,事情就开始正常了。