centos redis 主从配置+哨兵模式
十分想念顺店杂可。。。
运行环境:
系统: centos7.2,centos6.8
Redis版本: redis-4.0.6
Redis 主从哨兵介绍
主Redis写入数据时,从Redis会通过Redis Sync机制,同步数据,确保数据一致。一般为主写入,从读取。并且Redis有哨兵(Sentinel)机制,Redis主挂掉会自动帮我们提升从为主。哨兵监控redis进行状态,包括maste和slave,master宕机后,自动主从切换,主从切换后,配置文件会发生改变。
主从配置
主配置redis.conf
# 外部访问绑定
bind 0.0.0.0
protected-mode yes
# 端口
port 6379
tcp-backlog 511
# 超时时间
timeout 0
tcp-keepalive 300
# 守护进程
daemonize yes
supervised no
# 进程id存储
pidfile "/var/run/redis_6379.pid"
# 日志级别
loglevel notice
# 日志文件存储位置
logfile "/tmp/redis-log.log"
# 数据库的数量是可以配置的,默认情况下是16个
databases 16
always-show-logo yes
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
# 持久化文件名称
dbfilename "dump.rdb"
# 持久化数据文件存放的路径
dir "/root/application/program/redis/datas"
# 主redis连接密码
masterauth "NMHmmgwauALmOk5TIt5kqYiLnugcMn7V"
slave-serve-stale-data no
slave-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-disable-tcp-nodelay no
slave-priority 90
# redis数据库密码设置
requirepass "NMHmmgwauALmOk5TIt5kqYiLnugcMn7V"
lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
slave-lazy-flush no
appendonly yes
appendfilename "appendonly.aof"
appendfsync always
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
aof-load-truncated yes
aof-use-rdb-preamble no
lua-time-limit 5000
slowlog-log-slower-than 10000
slowlog-max-len 128
latency-monitor-threshold 0
notify-keyspace-events ""
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
list-max-ziplist-size -2
list-compress-depth 0
set-max-intset-entries 512
zset