Reputation: 1
I have an issue when releasing builds for a newly configured Jenkins. Whenever a SVN Commit is issued, it runs into an error for "Server verification failed: issuer is not trusted"
I have tried the multiple methods of svn checkout, svn list, etc. and to permanently accept the certificate information (fingerprint), but to no avail..
Is there something else I can do or I can allow, without compromising on security by disabling ssl?
Any help is appreciated. Thank you.
Upvotes: 0
Views: 245
Reputation: 4316
This sounds like a self-signed CA certificate is in use. Add the self-signed CA certificate to the Jenkin's JDK and the JDK used by the build. $JAVA_HOME/jre/lib/security/cacerts
Upvotes: 1