【解决】redis集群加入密码报错“Jedis does not support password protected Redis Cluster configurations“

升级redis密码之后,运行程序报错"Jedis does not support password protected Redis Cluster configurations"。
原因:Jedis版本原因不支持Redis密码

当时我们用的Jedis版本是2.8.2(jedis-2.8.2.jar),
redis版本是1.7.2(jedis-2.8.2.jar),
spring boot版本是1.4.0(1.4.0.RELEASE)

解决方案:
方案一:升级jedis和redis版本
因为是maven工程,所以需要改pom.xml
修改之前:

<dependency>
	<groupId>org.springframework.bootgroupId>
	<artifactId>spring-boot-starter-data-redisartifactId>
dependency>

修改后(指定版本):

<dependency>
	<groupId>org.springframework.bootgroupId>
	<artifactId>spring-boot-starter-data-redisartifactId>
	<exclusions>
		<exclusion>
			<groupId>redis.clientsgroupId>
			<artifactId>jedisartifactId>
		exclusion>
		<exclusion>
			<groupId>org.springframework.datagroupId>
			<artifactId>spring-data-redisartifactId>
		exclusion>
	exclusions>
dependency>

<dependency>
	<groupId>redis.clientsgroupId>
	<artifactId>jedisartifactId>
	<version>2.9.0version>
dependency>

<dependency>
	<groupId>org.springframework.datagroupId>
	<artifactId>spring-data-redisartifactId>
	<version>1.8.0.RELEASEversion>
dependency>

方案二:升级spring boot版本(1.5或以上):

你可能感兴趣的:(问题解决方案,redis,redis,spring,boot)