gpt4 book ai didi

Redis - Monit 无法正常启动

转载 作者:IT王子 更新时间:2023-10-29 06:11:57 25 4
gpt4 key购买 nike

Monit 无法正常启动redis-server。

通过 init.d 运行 Redis 工作正常:

$ sudo su

$ /etc/init.d/redis_6379 start

$ #=> Starting Redis server...

$ ps aux | grep redis

$ #=> root 8980 0.0 0.0 42128 1964 ? Ssl 04:56 0:00 /etc/redis/src/redis-server *:6379

$ /etc/init.d/redis_6379 stop

$ #=> Stopping ...

$ #=> Redis stopped

$ #=> (ps aux| grep redis) There's no redis process.

通过 Monit 运行 Redis 不能正常工作:

(我杀死了Redis进程和rm/var/run/redis_6379.pid)

$ sudo su

$ monit start redis

$ ps aux | grep redis

$ #=> root 9082 0.0 0.0 35076 1972 ? Ssl 05:08 0:00 /etc/redis/src/redis-server *:6379

监控日志:

[MSK Jan  6 05:08:14] info     : 'redis' start on user request
[MSK Jan 6 05:08:14] info : monit daemon at 3947 awakened
[MSK Jan 6 05:08:14] info : Awakened by User defined signal 1
[MSK Jan 6 05:08:14] info : 'redis' start: /etc/init.d/redis_6379
[MSK Jan 6 05:08:44] error : 'redis' failed to start
[MSK Jan 6 05:08:44] info : 'redis' start action done

通过 Monit 停止 Redis 也不能正常工作:

$ ps aux | grep redis

$ #=> root 9018 0.0 0.0 35076 1968 ? Ssl 05:02 0:00 /etc/redis/src/redis-server *:6379

$ monit stop redis

$ ps aux | grep redis

$ #=> root 9082 0.0 0.0 35076 1972 ? Ssl 05:08 0:00 /etc/redis/src/redis-server *:6379

监控日志

[MSK Jan  6 05:10:02] info     : 'redis' stop on user request
[MSK Jan 6 05:10:02] info : monit daemon at 3947 awakened
[MSK Jan 6 05:10:02] info : Awakened by User defined signal 1
[MSK Jan 6 05:10:02] info : 'redis' stop action done

我有:

  • Ubuntu 12.04.3 LTS
  • redis-2.8.2
  • monit-5.3.2
  • redis安装路径/etc/redis
  • monit安装路径/etc/monit(从apt-get repo安装)

以及以下配置文件:

https://gist.github.com/itsNikolay/665112df34d2eae09330

最佳答案

我遇到了同样的问题,周围没有人谈论这种情况。我用另一个解决方案修复了它,它可能与其他人有关,所以我将它发布在这里。

在我的monit配置文件中

start program = "/etc/init.d/redis start"
stop program = "/etc/init.d/redis stop"

替换为以下修复了问题(使用 Ubuntu)

start program = "/usr/sbin/service redis start"
stop program = "/usr/sbin/service redis stop"

关于Redis - Monit 无法正常启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20941565/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com