Redis主从复制、哨兵模式
1.部署主从 环境: 主IP:10.0.0.15,端口6379 ; 从IP:10.0.0.16,端口6379 . 原理:基于RDB持久化的功能来实现主从复制的功能. a.linux-redis1(10.0.0.15) cd /usr/local/redis/ grep "^[a-Z]" redis.conf # 列出几个修改过的配置 bind 10.0.0.15 protected-mode no port 6379 daemonize yes loglevel notice logfile /usr/local/redis/logs/redis.log databases 16 save 900 1 save 300 10 save 60 10000 dir /data/redis b.linux-redis2(10.0.0.16) cd /usr/local/redis/ grep "^[a-Z]" redis.conf # 其余与上面的配置保持一致 bind 10.0.0.16 slaveof 10.0.0.15 6379 # 启动脚本 cat /usr/lib/systemd/system/redis.service IP=`ifconfig eth0 | awk -F"[ ]+" 'NR==2{print $3}'` [Unit] Description=The