Reputation: 13
I'm trying to connect my java based application to the IBM MQ queue manager through the MQ client. SSL is already configured at MQ Server which is managed by third-party, Now to configure the SSL on the client-side I need Keystore & Truststore in .jks form.
Could you please let me know the process of generating the Keystore & Truststore required for SSL communication b/w IBM MQ server & client?
What is the Userid in Keystore & Truststore is it the alias name?
Upvotes: 0
Views: 5754
Reputation: 4735
There is a tutorial that will guide you through the process of creating a JMS Keystore - https://developer.ibm.com/tutorials/mq-secure-msgs-tls/
but it doesn't need to be. You could use a .p12 Truststore, and there is a guide that shows how - https://github.com/ibm-messaging/mq-dev-samples/blob/master/README.md
both use keytool
.
Upvotes: 1