sentinel directive while not in sentinel mode问题解决方案

今天部署redis的哨兵模式的时候,由于自己的粗心大意,导致部署的时候一致报如下的错误:

*** FATAL CONFIG FILE ERROR ***
Reading the configuration file, at line 2
>>> 'sentinel monitor mymaster 127.0.0.1 6379 2'
sentinel directive while not in sentinel mode

最后发现,竟然是因为部署哨兵模式的时候,使用的命令不对造成的,正确的命令如下:

./redis-server.sh sentinel.conf --sentinel

而我自己部署的时候,粗心的把后面的--sentinel竟然给忘了。为了避免类似的事情发生,建议大家使用redis-sentinel sentinel.conf代替redis-server命令

在此立据,也给粗心的自己提个醒。

你可能感兴趣的:(redis,异常)