如何成功启动`redis-sentinel`服务器

How to start `redis-sentinel` server successfully

抱歉这里是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 应该在哪里?

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

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

redis-sentinel /path/to/sentinel.conf

否则你可以直接使用以哨兵模式启动它的 redis-server 可执行文件:

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

您可以将文件放在任何您想要的地方,只要确保您提供正确的路径即可。例如,如果您在 linux 中并且文件在您的主目录中,则命令将为

redis-sentinel ~/sentinel.conf