springboot2 配置redis哨兵sentinel
程序员文章站
2022-04-27 18:43:31
...
上一篇基础
springboot2 配置redis,RedisTemplate,RedisCache
https://blog.csdn.net/haveqing/article/details/86519992
配置sentinel.master和sentinel.nodes
spring-redis会自动加载配置
配置了哨兵,host和port就不用配置了,
spring:
redis:
# Redis数据库索引(默认为0)
database: 10
# Redis服务器地址
#host: 192.168.203.220
# Redis服务器连接端口
#port: 6379
# Redis服务器连接密码(默认为空)
password: redis2018
lettuce:
pool:
# 连接池最大连接数(使用负值表示没有限制)
max-active: 200
# 连接池中的最大空闲连接
max-idle: 20
# 连接池中的最小空闲连接
min-idle: 0
# 连接池最大阻塞等待时间(使用负值表示没有限制)
max-wait: -1ms
# 连接超时时间(毫秒)默认是2000ms
timeout: 2000ms
sentinel:
#哨兵监听的master名称
master: mymaster
#哨兵地址列表,多个以,分割
nodes: 192.168.203.205:26479
参考:
springboot中配置主从redis
https://www.cnblogs.com/HendSame-JMZ/p/7722104.html
上一篇: SpringBoot2 配置
下一篇: 编码习惯
推荐阅读
-
Redis Sentinel(哨兵模式)
-
Redis Sentinel实现哨兵模式搭建小结
-
Linux redis-Sentinel配置详解
-
Redis 哨兵高模式搭建及Java代码配置
-
Redis主从复制+哨兵简单配置
-
[redis 源码走读] sentinel 哨兵 - 主客观下线
-
Redis运维和开发学习笔记(5) 主从复制和sentinel哨兵模式
-
Redis高可用集群-哨兵模式(Redis-Sentinel)
-
redis单点、redis主从、redis哨兵sentinel,redis集群cluster配置搭建与使用
-
redis单点、redis主从、redis哨兵sentinel,redis集群cluster配置搭建与使用