一个 Sentinel 监控多个 Redis 主从

2022-10-04 14:31:51 浏览数 (1)

Sentinel 集群部署

sentinel部署文档


新增一套 Redis 主从

IP

角色

192.168.1.67

redis-01-主

192.168.1.167

redis-02-从


手动添加指定<master name>节点的监控(需要在每个sentinel节点执行)

代码语言:javascript复制
redis-cli -p 26379

127.0.0.1:26379> sentinel monitor test 192.168.1.67 6379 2

刚才新增的节点,slaves=0,是因为在redis.conf中设置了密码,redis-sentinel.conf中也要设置密码

vim /etc/redis-sentinel.conf

每个sentinel节点都要配置,然后重启每个sentinel服务


取消指定<master name>节点的监控(需要在每个sentinel节点执行)

代码语言:javascript复制
redis-cli -p 26379
127.0.0.1:26379> sentinel remove test


我的博客即将同步至腾讯云开发者社区,邀请大家一同入驻:https://cloud.tencent.com/developer/support-plan?invite_code=1melm7zbxp9z9

0 人点赞