赞
踩
哨兵集群
一、建立redis主从集群
启动多个redis,其他从属redis通过slaveof IP号 端口号绑定主redis,只有主redis可以写数据,其他从redis只能读取数据,同时自动会进行数据同步
二、搭建哨兵集群
1.复制多份redis,每一个redis新建一个sentinel.conf文件,并写入下面的代码
port 27001
sentinel monitor mymaster 127.0.0.1 7001 2 //前面是主redis的IP最后的这个2是主观数大于等于2时为客观
sentinel down-after-milliseconds mymaster 5000
sentinel failover-timeout mymaster 18000
2.启动命令,这里使用的window搭建的
redis2.x版本
redis-server sentinel.conf --sentinel
redis6.x版本
redis-sentinel sentinel.conf
三、springboot整合redis哨兵集群
1.yml
这里的nodes是哨兵集群的IP地址
spring:
redis:
sentinel:
master: mymaster
nodes:
- 127.0.0.1:27001
- 127.0.0.1:27002
- 127.0.0.1:27003
2.配置Le
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。