0

我是新手God。我正在尝试使用God来监视unicorn我的 rails 应用程序运行的进程。

这是我的上帝文件:

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)

但实际上我有权使用 user 访问这两个目录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

这是为什么?

4

1 回答 1

1

我有一个类似的问题。当我移除这w.gid条线时,一切都开始正常了。

于 2013-08-05T04:43:42.610 回答