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()); |
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
Download the certificates through the UI. The zip contains 3 files:
Create p12 file, using the crt file and the private key file:
> openssl pkcs12 -export -in garantia_user.crt -inkey garantia_user_private.key -out JedisSSL.p12
Create the jks file, using the pem file:
> keytool -import -alias bundle -trustcacerts -file garantia_ca.pem -keystore keystore.jks