网站更新内容:请访问: https://bigdata.ministep.cn/

redis.exceptions.ConnectionError: Error while reading from xxxx:6379 : (110, 'Connection timed out')

## 报错提示:

redis.exceptions.ConnectionError: Error while reading from x.x.x.x:6379 : (110, 'Connection timed out')
 
## 解决办法

使用的是腾讯云服务器,redis服务已经打开了。安全组里面的6379端口也打开了。但是每次运行django都显示连接错误。 网上找了一大堆都说是redis服务没开,但是我明明已经开了。

最后发现了这个。

python redis.exceptions.ConnectionError_escaping的博客-CSDN博客

原来是服务器的防火墙把端口给墙了。
iptables -I INPUT -p tcp --dport 6666 -j ACCEPT
再连接,就可以了

 

## 参考

[redis.exceptions.ConnectionError: Error 110 connecting to X.X.X.X:6379. Connection timed out.解决_Shawn的博客-CSDN博客](https://blog.csdn.net/weixin_44638598/article/details/122261641)

posted @ 2022-12-12 18:30  ministep88  阅读(622)  评论(0编辑  收藏  举报
网站更新内容:请访问:https://bigdata.ministep.cn/