1

对不起这里的redis新手。

当我跑redis-sentinel

42533:X 10 Nov 21:21:30.345 # Warning: no config file specified, using 
the default config. In order to specify a config file use redis- 
sentinel /path/to/sentinel.conf
42533:X 10 Nov 21:21:30.346 * Increased maximum number of open files to 
10032 (it was originally set to 7168).
Redis 3.0.4 (00000000/0) 64 bit

Running in sentinel mode
Port: 26379
PID: 42533
http://redis.io

42533:X 10 Nov 21:21:30.347 # Sentinel runid is 
733213860cf470431c7441e5d6aaf9ed9b2d7c2f
42533:X 10 Nov 21:21:30.347 # Sentinel started without a config file. 
Exiting...

我错过了什么?我需要配置文件吗?如果是这样,我应该在哪里/path/to/sentinel.conf

4

1 回答 1

5

运行 Sentinel 时必须使用配置文件,因为系统将使用该文件来保存当前状态,以便在重新启动时重新加载。如果没有给出配置文件或配置文件路径不可写,Sentinel 将简单地拒绝启动。

您可以使用以下命令行运行 Sentinel:

redis-sentinel /path/to/sentinel.conf

否则,您可以直接使用 redis-server 可执行文件以 Sentinel 模式启动它:

redis-server /path/to/sentinel.conf --sentinel

您可以将文件放在您想要的任何位置,只需确保为此提供正确的路径。例如,如果你在 linux 中并且文件在你的主目录中,那么命令将是

redis-sentinel ~/sentinel.conf
于 2018-11-11T04:32:33.247 回答