红联Linux门户
Linux帮助

redis主从模式配置与使用

发布时间:2017-04-12 11:41:47来源:linux网站作者:爱橙子的OK绷
一、实验环境
VMware创建两个虚拟机A(192.168.191.128)、B(192.168.191.130),在两个虚拟机上分别安装好Redis。并将redis.conf文件的daemonize no改为daemonize yes,以便redis服务在后台运行。
如果要A作为master,B作为slave,则A无需额外处理,B需对其redis.conf文件做如下配置:
(1)将port 6379修改为port 6380
(2)添加slaveof 192.168.191.128 6379 #即主redis的IP和port 
 
二、测试
1、启动主从redis
will@ubuntu:~/redis-master$ redis-server ./redis.conf
will@ubuntu:~/redis-slave$ redis-server ./redis.conf
2、同步数据
(1)master:
redis主从模式配置与使用
(2)slave:
redis主从模式配置与使用
3、默认读写分离
在slave节点无法对msg进行设置和更改:
redis主从模式配置与使用
 
三、关闭主从redis
will@ubuntu:~/redis-master$ redis-cli -h localhost -p 6379 shutdown
will@ubuntu:~/redis-slave$ redis-cli -h localhost -p 6380 shutdown
 
本文永久更新地址:http://www.linuxdiyf.com/linux/29939.html