TeamCity and JIRA via HTTPS

For me, JIRA and TeamCity work on two separate servers that are accessible via HTTPS and self-signed certificates.

Now I would like to integrate JIRA as a TeamCity tracker.

However, when I try to establish a connection with TeamCity, I get CertificateException.

TeamCity is located on a Ubuntu 101.10 machine, and I tried to import the certificate from the JIRA server into /usr/lib/jvm/java-6-openjdk/jre/lib/security/, but that didn't matter.

+3
source share
1 answer

The command imports a self-signed certificate :

keytool -import -alias joe -file server.crt -keystore C:/jdk1.5.0_06/jre/lib/security/cacerts -storepass changeit

So, if this does not work, are you sure that this jdk is actually used by TeamCity?

+1
source

Source: https://habr.com/ru/post/1787299/


All Articles