Java连接Redis connection timed out 报错的解决方法

Java连接Redis connection timed out 报错的解决方法

踩坑场景

在使用 RedisTemplate 连接 Redis 进行操作的时候,发生了如下报错:

报错信息如下:
Caused by: io.netty.channel.ConnectTimeoutException: connection timed out: /192.168.73.10:6379
    at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe$1.run(AbstractNioChannel.java:267)
    at io.netty.util.concurrent.PromiseTask$RunnableAdapter.call(PromiseTask.java:38)
    at io.netty.util.concurrent.ScheduledFutureTask.run(ScheduledFutureTask.java:127)
    at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:163)
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:404)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:495)
    at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:905)
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
    at java.lang.Thread.run(Thread.java:748)
image-20201028114433063

当时使用 Redis 的代码为:

 @RunWith(SpringRunner.class)
 @SpringBootTest(classes = RedisStudy01Application.class)
 public class RedisStudy01ApplicationTests {
 ​
  @Autowired
  RedisTemplate<String,String> redisTemplate;
 ​
  @Test
  public void contextLoads() {
  redisTemplate.opsForValue().set("name","xp");
  String name = redisTemplate.opsForValue().get("name");
  System.out.println(name);
  }
 ​
 }

环境

报错时的环境为:

SpringBoot 2.1.4

Redis 6.0.8

CentOS 7

Windows 10

idea 2019.1

解决过程

看到这个报错的时候,我先想到的就是本机和 Redis 是否能 ping 得通。经过测试,能 ping 通

ping ip

然后我就觉得可能是 Linux 防火墙在干坏事,所以关闭了 Linux 防火墙

  • 查看防火墙
    systemctl status firewalld
    service iptables status
  • 暂时关闭防火墙
    systemctl stop firewalld
    service iptables stop
  • 永久关闭防火墙
    systemctl disable firewalld
    chkconfig iptables off

但是关闭防火墙后,还是不能连接到远程Linux系统中的Redis,反而出现了一个新的报错

报错信息如下:

Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /192.168.73.10:6379

或者是

Exception in thread "main" redis.clients.jedis.exceptions.JedisDataException: DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified, no authentication password is requested to clients. In this mode connections are only accepted from the loopback interface. If you want to connect from external computers to Redis you may adopt one of the following solutions:

  1. Just disable protected mode sending the command 'CONFIG SET protected-mode no' from the loopback interface by connecting to Redis from the same host the server is running, however MAKE SURE Redis is not publicly accessible from internet if you do so. Use CONFIG REWRITE to make this change permanent.

  2. Alternatively you can just disable the protected mode by editing the Redis configuration file, and setting the protected mode option to 'no', and then restarting the server

  3. If you started the server manually just for testing, restart it with the '--protected-mode no' option.

  4. Setup a bind address or an authentication password. NOTE: You only need to do one of the above things in order for the server to start accepting connections from the outside

百度时找到这篇博客:https://blog.csdn.net/a532672728/article/details/78035559

总结这篇博客就是:

修改 redis 配置文件

  1. 将 bind 注释掉,允许非本机访问

  2. 关闭安全守护模式,将 protected-mode 设置为 no

  3. 加上安全认证,设置 requirepass 密码,但在我的测试中,不设置密码只执行上面两个步骤,也可以解决这个 bug

执行上面操作后,重启 Redis 服务端,报错就解决了

解决步骤

1. 测试主机和Linux服务器是否能连通

互相 ping 主机和 Linux 服务器的 ip,查看是否能 ping 通连接

ping 不通的话得解决网络问题,或者关闭 Linux 防火墙试试

如果是虚拟机的话,在虚拟机的设置中切换网络连接模式

虚拟机 --> 设置 --> 网络适配器 --> 修改网络连接模式

image-20201028163638728
  • windows 查看主机 ip 的命令
    ipconfig
  • Linux 查看主机 ip 的命令
    ifconfig

2. 关闭 Linux 防火墙

  • 查看防火墙
    systemctl status firewalld
    service iptables status
  • 暂时关闭防火墙
    systemctl stop firewalld
    service iptables stop
  • 永久关闭防火墙
    systemctl disable firewalld
    chkconfig iptables off

3. 修改 Redis 配置文件

使用 vim Reids配置文件 的方式修改 Redis 配置文件

vim redis.config

  1. 允许非本机访问

    将 Redis 配置文件中的 bind 注释掉

    bind 127.0.0.1

    image-20201028161456889
  2. 关闭安全守护模式

    将 Redis 配置文件中的 protected-mode 修改成 no

    protected-mode no

    image-20201028161620128
  3. 开启安全认证

    我测试过不开启安全认证也可以解决这个报错,如果不行的话可以尝试

    将 Redis 配置文件中添加 requirepass

    requirepass 密码

    image-20201028161858615

3. 重启 Redis 服务端

有两种方式重启 Redis 服务端

第一种

在 Redis 客户端关闭 Redis 服务端

启动 Redis 客户端

redis-cli

关闭 Redis 服务端

shutdown

<pre spellcheck="false" class="md-fences md-end-block md-fences-with-lineno ty-contain-cm modeLoaded" lang="bash" cid="n256" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px 0px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"> [admin@localhost ~]$ redis-cli
127.0.0.1:6379> shutdown
not connected></pre>

image-20201028163340095

第二种

查看 Redis 进程

ps -ef|grep redis

杀死 Redis 进程

kill -s 9 进程号

ps -ef|grep redis 查看 Redis 进程号

image-20201028162146031

kill -s 9 3119 杀死 Redis 进程

4. 测试

重新运行代码,发现运行成功,报错解决

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,723评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,485评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,998评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,323评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,355评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,079评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,389评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,019评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,519评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,971评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,100评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,738评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,293评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,289评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,517评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,547评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,834评论 2 345