当前位置:   article > 正文

redis 主从模式,sentinel 模式配置

redis 主从模式,sentinel 模式配置

编辑 sentinel.xml 和  redis.conf

redis.conf  中核心是配置

  1. bind 192.168.64.144
  2. daemonize yes
  3. protected-mode no
  4. dbfilename redis-6379.rdb #默认dump.rdb
  5. replica-read-only yes # 自动2.6副本默认只读,也就是slave只有只读权限
  6. replicationOf  myapplication  192.168.64.144 6379 2 #有些版本是slaveOf
  7. appendonly yes #开启aof
  8. appendfilename "appendonly-6379.aof"
  9. appendfsync always #数据同步时间
  10. save 3600 1 #每1小时有1个key 改变
  11. save 300 100 #每5分钟有 100个key改变
  12. save 60 10000 # 每1分钟有10000个key改变
  13. logfile "redis.log"
  14. dir $REDIS_HOME/data

sentinel.conf 核心配置 

  1. port 26381
  2. daemonize yes
  3. sentinel monitor mymaster  192.168.64.144 6379 2
  4. sentinel down-after-milliseconds mymaster 30000 #下线是30s
  5. sentinel auth-pass mymaster 123456 #这个学习的时候完全没有必要配置
  6. sentinel failover-timeout mymaster 30000

bin/redis-server config/redis.conf 

bin/redis-sentinel config/sentinel.conf

配置完成后  bin/redis-cli -h 192.168.64.144 执行info 命令

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/125719
推荐阅读
  

闽ICP备14008679号