springboot整合redis报错NOAUTH Authentication required.解决方案

环境:

pom中reids相关配置:

	
		
			org.springframework.boot
			spring-boot-starter-data-redis
			
				
					redis.clients
					jedis
				
				
					io.lettuce
					lettuce-core
				
			
		
		
			redis.clients
			jedis
		

在application.properties中redis的配置(密码我隐藏了,实际上redis服务器是配置了密码的,):

# Redis服务器连接端口
spring.redis.port=6379
# Redis服务器连接密码(默认为空)
#spring.redis.password=xxxx
# 连接

你可能感兴趣的:(redis,springboot,redis)