redis 主从配置
主从配置
1.一个master可以拥有多个slave,一个slave又可以拥有多个slave,如此下去形成了强大的多级服务器集群架构。
例:将ip为192.168.xx.x1的机器作为主服务器,将ip为192.168.1.xx.x2的机器作为从服务器,设置主服务器的配置,编辑/conf/redis.conf bind 192.168.x.x1,编辑从服务器的配置,/conf/redis.conf bind 192.168.x.x2 slaveof 192.168.x.x1 6379 ,在主master上写数据 set hello world,在slave上读数据 get hello。