Created
June 14, 2017 08:31
-
-
Save eransharv/9de8e94faae5bde70dfcdfa7d8e6157b to your computer and use it in GitHub Desktop.
java Redisson redis client example using SSL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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?