关于SpringBoot远程连接Linux上Redis出现RedisConnectionException: Unable to connect to xxx.xxx.xxx.xxx:6379的问题

SpringBoot2.x远程调用Redis错误
此问题有多种情况:这里着重讲比较常见的情况
1、Linux防火墙开启,关闭即可。
2、阿里云实例安全组中未开放6379
3、Linux服务器上的redis启动配置文件未允许远程访问 和 保护模式开启
关于SpringBoot远程连接Linux上Redis出现RedisConnectionException: Unable to connect to xxx.xxx.xxx.xxx:6379的问题_第1张图片4、redis默认端口号6379在Linux防火墙中不允许进行远程连接,执行如下Linux命令

/sbin/iptables -I INPUT -p tcp --dport 6379 -j ACCEPT

在防火墙中设置6379开启远程服务。
5、SpringBoot的Redis配置文件中超时时间设置为0导致
关于SpringBoot远程连接Linux上Redis出现RedisConnectionException: Unable to connect to xxx.xxx.xxx.xxx:6379的问题_第2张图片
6、服务器的Redis没有密码,却在SpringBoot的Redis配置文件中配置了密码,删除即可。

你可能感兴趣的:(SpringBoot,redis,centos,java,linux)