io.lettuce.core.RedisCommandExecutionException: NOAUTH Authentication required.

发布时间:2024年01月12日

报错信息:

浏览器中的报错信息

IDEA中的报错信息

报错原因:

SpringBoot整合Redis使用的默认配置,但是我们设置了Redis的密码,而默认配置中密码是为空的,导致不能够连接

浏览器中的报错信息

There was an unexpected error (type=Internal Server Error, status=500).

Unable to connect to Redis

org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis

IDEA中的报错信息
2024-01-12T14:58:40.297+08:00 ERROR 10516 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] ? ?: Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis] with root cause

io.lettuce.core.RedisCommandExecutionException: NOAUTH Authentication required.

?

解决方案:?

在application.properties配置文件中加一行Redis服务器的连接密码的配置

spring.data.redis.password=123456

文章来源:https://blog.csdn.net/m0_73956769/article/details/135553139
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。