I am trying to set up SSL and I am having some trouble really understanding how to get the cert and cert path into a Keystore that the Jira application can read. We have our own PKI and I will need to set up the store so that it has our root, sub and cert.
Thanks,
B
Hi Burton,
As a guide you could check out in Running JIRA over SSL or HTTPS documentation.
Also, are you using proxy in front of JIRA? I mean Apache, IIS.
Would you please explain a little bit more what is the main problem you're facing?
Have you configured SSL as described above and got some error? If so which error was it?
I hope it helps.
Cheers.
Hi, I have read the guide. Where my confusion starts is where is the keystore I should be using? Also, we are using our own PKI so I need to add my own root ca and sub ca to the trusted roots. I am not using an apache reverse proxy.
Thanks for the feedback!
Burton
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Burton,
Once you have already created a certificate, basically you'll need to:
$JAVA_HOME/jre/bin/keytool -import -alias YourCertificateName -file YourCertificateName.cert -keystore /path/to/your/keystore
<Connector port="8443" maxThreads="200" scheme="https" secure="true" SSLEnabled="true" keystoreFile="/path/to/your/keystore" keystorePass="CertificatePassword" clientAuth="false" sslProtocol="TLS"/> -->
-Djavax.net.ssl.trustStore=/path/to/your/keystore -Djavax.net.ssl.trustStorePassword="CertificatePassword"
Restart JIRA and check if SSL is working.
I hope it helps.
Kind Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.