[email protected] writes: > We have just installed Jenkins and we want to install some plugins (Git, > ...). But in plugins section, Advanced tab, the "validate proxy" fails with > following message : " > > javax.net.ssl.SSLHandshakeException: > sun.security.validator.ValidatorException: PKIX path building failed: > sun.security.provider.certpath.SunCertPathBuilderException: unable to find > valid certification path to requested target". It seems we have a > certificate issue. Can someone tell us where to get information about the > good way to manage these certificates for Jenkins. > > The "Test URL" was "http://jenkins-ci.org/" ; there is no problem for > accessing this URL in brower with same proxy configuration.
Seems you have a transparent proxy that terminates HTTPS traffic from the target site, re-encrypts/signs it with its own key/certificate and forwards it to the client. Quite often such intermediate certificates are self-signed thus breaking the chain of trust. Check this SO question [1] to better understand and how to 'fix' this issue. [1] https://stackoverflow.com/questions/6908948/java-sun-security-provider-certpath-suncertpathbuilderexception-unable-to-find -- Mykola https://manandbytes.github.io/ -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/87oa7rdwg5.fsf%40mn.com.ua. For more options, visit https://groups.google.com/d/optout.
