admin管理员组文章数量:1344975
I have a spring app deployed to AWS Kubernetes, and an AWS elasticache with transit encryption mode set to required
. When the java code below gets executed, it throws an exception
Java code:
JedisCluster jedisCluster = new JedisCluster(new HostAndPort(host, port));//host is the redis cluster endpoint
Error:
<JedisClusterOperationException> Could not initialize cluster slots cache
Maven dependency:
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>5.2.0</version>
</dependency>
However, when the encryption mode is set to Preferred
, the java code above connects to the elasticache fine and it gets executed without throwing an exception.
Any idea how to fix this issue with keeping the encryption mode set to required
?
I have a spring app deployed to AWS Kubernetes, and an AWS elasticache with transit encryption mode set to required
. When the java code below gets executed, it throws an exception
Java code:
JedisCluster jedisCluster = new JedisCluster(new HostAndPort(host, port));//host is the redis cluster endpoint
Error:
<JedisClusterOperationException> Could not initialize cluster slots cache
Maven dependency:
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>5.2.0</version>
</dependency>
However, when the encryption mode is set to Preferred
, the java code above connects to the elasticache fine and it gets executed without throwing an exception.
Any idea how to fix this issue with keeping the encryption mode set to required
?
1 Answer
Reset to default 0After looking into JedisCluster class in depth, I was able to find a solution for the issue above.
SSLSocketFactory sslSocketFactory = (SSLSocketFactory) SSLSocketFactory.getDefault();
SSLParameters sslParameters = new SSLParameters();
JedisClientConfig clientConfig = DefaultJedisClientConfig.builder()
.ssl(true)
.sslSocketFactory(sslSocketFactory)
.sslParameters(sslParameters)
.build();
Set<HostAndPort> clusterNodes = Set.of(new HostAndPort(host, port));
JedisCluster jedisCluster = new JedisCluster(clusterNodes, clientConfig);
本文标签:
版权声明:本文标题:redis - JedisClusterOperationException Could not initialize cluster slots cache. When encryption mode is set to "requir 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743806770a2542318.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论