WEB开发网
开发学院服务器云计算 Redis安装及主从配置 阅读

Redis安装及主从配置

 2012-07-18 19:36:33 来源:WEB开发网   
核心提示:当有一台从机不可用时当有一台从机变得不可用时,主机显示的信息如下: 32 - 1 clients connected (0 slaves), 798744 bytes in use [16848] 26 Sep 18:50:37
当有一台从机不可用时
当有一台从机变得不可用时,主机显示的信息如下:
32 - 1 clients connected (0 slaves), 798744 bytes in use
[16848] 26 Sep 18:50:37 - 1 clients connected (0 slaves), 798744 bytes in use
[16848] 26 Sep 18:50:42 - 1 clients connected (0 slaves), 798744 bytes in use
当两台从机都宕掉时
当两台从机都变得不可用时,主机显示的信息如下:
[29736] 26 Sep 18:52:57 - Client closed connection
[29736] 26 Sep 18:53:02 - 0 clients connected (0 slaves), 790584 bytes in use
[29736] 26 Sep 18:53:07 - 0 clients connected (0 slaves), 790584 bytes in use
主从结构的测试
在主结点上执行写入
在主机上执行写入命令1
redis> set foo bar
在各个从机上会显示的信息如下:
[2528] 26 Sep 18:57:01 - DB 0: 1 keys (0 volatile) in 4 slots HT.
[2528] 26 Sep 18:57:01 - 1 clients connected (0 slaves), 798952 bytes in use
[2528] 26 Sep 18:57:06 - DB 0: 1 keys (0 volatile) in 4 slots HT.
[2528] 26 Sep 18:57:06 - 1 clients connected (0 slaves), 798936 bytes in use
在主机上执行get foo命令,显示的信息如下:
redis 127.0.0.1:6379> get foo
"bar"
在从机10.20.150.208上执行get foo命令,显示的信息如下:
redis 127.0.0.1:6379> get foo
"bar"
同理,在从机10.20.150.209上执行get foo命令,显示的信息如下:
redis 127.0.0.1:6379> get foo
"bar"
 
当有一台从机挂掉后,在主机上写入
当有一台从机(10.20.150.208)宕机,在主机上执行setfoo1写入命令。

上一页  1 2 3 4 5 6  下一页

Tags:Redis 主从 配置

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接