python redis.exceptions.ConnectionError
在使用python连接redis的时候,报错 redis.exceptions.ConnectionError: Error 10060 connecting to IP:port. 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。PING了一下redis所在的服务器,能够PING通,再检查redis的连接认证,确认无误后,依旧报错连接不上。考虑是Linux防火墙没有开放该端
·
在使用python连接redis的时候,报错 redis.exceptions.ConnectionError: Error 10060 connecting to IP:port. 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。
PING了一下redis所在的服务器,能够PING通,再检查redis的连接认证,确认无误后,依旧报错连接不上。
考虑是Linux防火墙没有开放该端口,于是试一下
iptables -I INPUT -p tcp --dport 6666 -j ACCEPT
再连接,就可以了
更多推荐
已为社区贡献1条内容
所有评论(0)