Could not connect to Redis No route to host问题解决

Posted 圣痕道心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Could not connect to Redis No route to host问题解决相关的知识,希望对你有一定的参考价值。

问题原因:防火墙

解决办法:

 

一、停止Linux的防火墙(不建议)

$ systemctl stop firewalld.service

 

  其他相关命令

#显示服务的状态
$ systemctl status firewalld.service
#启动防火墙
$ systemctl start firewalld.service

 

二、开放6379,6380,16379(集群总线)端口

firewall-cmd --add-port=6379/tcp --permanent
firewall-cmd --add-port=6380/tcp --permanent
firewall-cmd --add-port=16379/tcp --permanent
firewall-cmd --reload

参数解释

1、firwall-cmd:是Linux提供的操作firewall的一个工具;

2、–permanent:表示设置为持久;

3、–add-port:标识添加的端口;

其他相关命令

#查看开放的端口
$ firewall-cmd --list-ports
#查询6379端口是否开放
$ firewall-cmd --query-port=6379/tcp
#移除6379端口
firewall-cmd --permanent --remove-port=6379/tcp

 

以上是关于Could not connect to Redis No route to host问题解决的主要内容,如果未能解决你的问题,请参考以下文章

Connecting to 172.16.128.14:22...Could not connec

“psql: could not connect to server: Connection refused” Error when connecting to remote database(示例代

Idea 连接数据库出错Connection to xxx@localhost failed. [08001] Could not create connection to database

Could not connect to Redis at 192.168.0.129:6379: Connection refused

MySql :Could not create connection to database server.

Could not connect to Redis No route to host问题解决