Libraco
Libraco

Reputation: 151

Sonarqube delegate authtication to Gitlab fail

Is there someone can help me, I would be so appreciate.

Upvotes: 2

Views: 2672

Answers (1)

VonC
VonC

Reputation: 1324937

The relevant error is

PKIX path building failed:    
  sun.security.provider.certpath.SunCertPathBuilderException: 
  unable to find valid certification path to requested targe

This is typical of a java application (here Sonar) which does not have the proper certificate (one needed by GitLab) in its keystore.

You can use openssl to get the GitLab server certificate

You can then add it to the java keystore (java used to run Sonar)

Upvotes: 3

Related Questions