Skip to content

Instantly share code, notes, and snippets.

@eransharv
Created June 14, 2017 08:31
Show Gist options
  • Save eransharv/9de8e94faae5bde70dfcdfa7d8e6157b to your computer and use it in GitHub Desktop.
Save eransharv/9de8e94faae5bde70dfcdfa7d8e6157b to your computer and use it in GitHub Desktop.
java Redisson redis client example using SSL
Config config = new Config();
config.useSingleServer()
.setAddress("rediss://redis-10928.c10.us-east-1-3.ec2.cloud.redislabs.com:10928")
.setSslKeystore(URI.create("file:/C:/Devel/projects/redisson/JedisSSL.p12"))
.setSslKeystorePassword("test1234")
.setSslTruststore(URI.create("file:/C:/Devel/projects/redisson/keystore.jks"))
.setSslTruststorePassword("test1234");
RedissonClient redisson = Redisson.create(config);
RBucket<String> bucket = redisson.getBucket("foo");
bucket.set("1");
System.out.println("bucket " + bucket.get());
@bensagi
Copy link

bensagi commented Oct 11, 2023

can I use the truststore without the keystore?
im using redis instance managed by googlecloud which provided only the .pem file without the .cert and .key files.
in this case, is truststore definition only should work?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment