Redis主从配置异常解决:Error condition on socket for SYNC: Connection refused

来源:互联网 发布:大秦帝国精缩本 知乎 编辑:程序博客网 时间:2024/06/03 09:06

Redis主从配置异常解决:Error condition on socket for SYNC: Connection refused

在Docker中搭建的Redis主从集群时,从服务器上的redis日志报错:

32677:S 08 Feb 16:14:38.947 * Connecting to MASTER 172.168.10.70:637932677:S 08 Feb 16:14:38.948 * MASTER <-> SLAVE sync started32677:S 08 Feb 16:14:38.948 # Error condition on socket for SYNC: Connection refused32677:S 08 Feb 16:14:39.950 * Connecting to MASTER 172.168.10.70:637932677:S 08 Feb 16:14:39.950 * MASTER <-> SLAVE sync started32677:S 08 Feb 16:14:39.950 # Error condition on socket for SYNC: Connection refused32677:S 08 Feb 16:14:40.952 * Connecting to MASTER 172.168.10.70:637932677:S 08 Feb 16:14:40.952 * MASTER <-> SLAVE sync started32677:S 08 Feb 16:14:40.953 # Error condition on socket for SYNC: Connection refused
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

解决方案: 
在redis主服务器上的redis.conf中修改bind字段,将

bind 127.0.0.1
  • 1
  • 1

修改为

bind 0.0.0.0
  • 1
  • 1

又或者直接注释掉bind字段

# bind 127.0.0.1
  • 1
  • 1

原因: 
如果redis主服务器绑定了127.0.0.1,那么跨服务器IP的访问就会失败,从服务器用IP和端口访问主的时候,主服务器发现本机6379端口绑在了127.0.0.1上,也就是只能本机才能访问,外部请求会被过滤,这是Linux的网络安全策略管理的。如果bind的IP地址是172.168.10.70,那么本机通过localhost和127.0.0.1、或者直接输入命令redis-cli登录本机redis也就会失败了。只能加上本机ip才能访问到。 

所以,在研发、测试环境可以考虑bind 0.0.0.0,线上生产环境建议绑定IP地址。


原文地址:http://blog.csdn.net/chwshuang/article/details/54929277

0 0
原创粉丝点击