我在我的3个实例中建立了主 - 从 - 奴关系,
在127.0.0.1:6379
,6380
,6381
。
实例和标记都在相同的IP,不同的端口上运行。 我已经设置了3个哨兵(127.0.0.1:26379,26380,26381),配置如下:
sentinel monitor mymaster 127.0.0.1 6379 1
sentinel down-after-milliseconds mymaster 60000
sentinel failover-timeout mymaster 180000
sentinel config-epoch mymaster 0
sentinel leader-epoch mymaster 53
sentinel parallel-syncs mymaster 1
端口26381
dir "/usr/local/Cellar/redis/3.0.2"
sentinel announce-ip 127.0.0.1
sentinel announce-port 26381
进一步解释我的设置,我只是尝试在我的本地机器上进行测试,如果sentinel可以响应主机的手动关闭。 看着哨兵大师mymaster,结果是哨兵不认识大师和其他哨兵:
127.0.0.1:26381> sentinel master mymaster
1) "name"
2) "mymaster"
3) "ip"
4) "127.0.0.1"
5) "port"
6) "6379"
7) "runid"
8) ""
9) "flags"
10) "s_down,o_down,master,disconnected"
11) "pending-commands"
12) "-1"
13) "last-ping-sent"
14) "479567"
15) "last-ok-ping-reply"
16) "479567"
17) "last-ping-reply"
18) "27895"
19) "s-down-time"
20) "419512"
21) "o-down-time"
22) "419512"
23) "down-after-milliseconds"
24) "60000"
25) "info-refresh"
26) "1435337950249"
27) "role-reported"
28) "master"
29) "role-reported-time"
30) "479567"
31) "config-epoch"
32) "0"
33) "num-slaves"
34) "0"
35) "num-other-sentinels"
36) "0"
37) "quorum"
38) "1"
39) "failover-timeout"
40) "180000"
41) "parallel-syncs"
42) "1"
我无法从配置文件中更改此哨兵行为。哨兵有没有办法互相交谈,并认出我的主人?
答案 0 :(得分:1)
我要检查的第一件事是主人是否需要身份验证。如果是这样,你需要设置它。一旦有效,其他一切都将落实到位,因为哨兵将通过主人发现其他人,并且奴隶将以同样的方式被发现,
答案 1 :(得分:0)
任何人都很难以解决我遇到过的问题:
sentinel known-sentinel 127.0.0.1 26379
sentinel known-sentinel 127.0.0.1 26380
sentinel known-slave 127.0.0.1 6380
sentinel known-slave 127.0.0.1 6381
帮助。