1

我正在使用 God(Ruby gem)监控我的 redis 服务器。但是,我现有的服务器可能已经有一个 redis 实例。如何确保它监控已经启动的现有 Redis 服务器进程?

这是我的redis的上帝文件:

rails_root = ENV['RAILS_ROOT']
redis_root = "/usr/local/bin"

# Redis
%w{6379}.each do |port|
  God.watch do |w|
    w.name          = "redis"
    w.interval      = 30.seconds
    w.start         = "#{redis_root}/redis-server /etc/redis/redis.conf"
    w.stop          = "#{redis_root}/redis-cli shutdown"
    w.restart       = "#{w.stop} && #{w.start}"
    w.start_grace   = 10.seconds
    w.restart_grace = 10.seconds
    w.log           = File.join(rails_root, 'log', 'redis.log')
    w.keepalive(:memory_max => 5000.megabytes)
    w.start_if do |start|
      start.condition(:process_running) do |c|
          c.interval = 5.seconds
          c.running = false
      end
    end
  end
end
4

2 回答 2

1

要回答这个问题:

我在我的 God 文件中放了一个 w.pid_file = "SOMETHING",并确保在 Redis 的配置文件中也设置了这个 PID 文件。

于 2013-05-13T01:16:50.630 回答
0

您还应该添加:

w.pid_file = "Your_pid_file_name"

然后清理pid文件

w.behaviour(:clean_pid_file)
于 2013-12-27T08:50:29.027 回答