redis replication faq
1.master端set key,在slave端接收不到key
slave端日志内容:
redis Error condition on socket for SYNC: Broken pipe
解决:在master端 增加:bind 0.0.0.0 重启redis 就可以了
2.密码验证
在配置文件里面
requirepass master(密码)
操作的时候: redis-cli -p 6379
127.0.0.1:6379> set h helloworld
(error) NOAUTH Authentication required.
127.0.0.1:6379> auth master
OK
127.0.0.1:6379> set h helloworld
OK
127.0.0.1:6379> set number 888
(error) NOAUTH Authentication required.
这样每次操作都要输入密码:
可以在启动的时候设置:redis-cli -a master(password) -p 6379
slave端:配置文件设置masterauth master
redis-cli -p 6380
127.0.0.1:6380> get h
"helloworld"
3.slave write
在slave端write出现 (error) READONLY You can't write against a read only slave.
我们可以用info命令来查看主从
服务器的信息,在从机上用info命令可以看到
role:slave
master_host:masterip
master_port:masterport
master_link_status:up证明和主机处在连接状态
在主机上用info命令
role:master
同时连接着几台从机
connected_slaves:1