我是靠谱客的博主 缥缈蜡烛,最近开发中收集的这篇文章主要介绍Caused by: redis.clients.jedis.exceptions.JedisDataException: NOAUTH Authentication required.,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
<bean id="sentinelConfig"
class="org.springframework.data.redis.connection.RedisSentinelConfiguration">
<constructor-arg name="master" value="mymaster" />
<constructor-arg name="sentinelHostAndPorts">
<set>
<value>${sentinelHostAndPort1}</value>
<value>${sentinelHostAndPort2}</value>
<value>${sentinelHostAndPort3}</value>
</set>
</constructor-arg>
</bean>
<bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
<constructor-arg ref="sentinelConfig" />
<property name="password" value="${redis.password}" />
</bean>
如果没有配置<property name="password" value="${redis.password}" />
会出现如上错误
最后
以上就是缥缈蜡烛为你收集整理的Caused by: redis.clients.jedis.exceptions.JedisDataException: NOAUTH Authentication required.的全部内容,希望文章能够帮你解决Caused by: redis.clients.jedis.exceptions.JedisDataException: NOAUTH Authentication required.所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复