Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

If the SSL Certificate is missing from trustStore of Java, Import-Export Utility can't establish a connection to the Jira instance.

...


Solution: SSL certificate related issues are not within QMetry Support scope, however, adding SSL certificate in trustStore of Java (on the machine which the import/export utility is being run) will resolve this issue. Generally, Network/IT Infra team knows how to resolve the certification issue. We request the user to contact their IT Infra team to resolve this issue.

...

  • You need to add the certificate to the trustStore file of the used JVM located at - 

    Highlight
    colorlime

    %JAVA_HOME%\lib\security\cacerts

    .

  • First, you can check if your certificate is already in the trustStore by running the following command: 

    Highlight
    colorlime

    keytool -list -keystore "%JAVA_HOME%/jre/lib/security/cacerts


  • If your certificate is missing you can get it by downloading it from your Jira instance URL and add it to the trustStore with the following command:

    Highlight
    colorlime

    keytool -import -noprompt -trustcacerts -alias <AliasName> -file   <certificate> -keystore <KeystoreFile> -storepass <Password>