]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-13836 Add PKIX path building failed error to analysis FAQ
authormichaelbirnstiehl <michael.birnstiehl@sonarsource.com>
Tue, 1 Dec 2020 20:45:51 +0000 (14:45 -0600)
committersonartech <sonartech@sonarsource.com>
Wed, 2 Dec 2020 20:06:59 +0000 (20:06 +0000)
server/sonar-docs/src/pages/analysis/overview.md

index 613a7c99f401c4e5fa1f1fe0aee717a6f76f95ea..33e7224f6dc89b2eade2d4823d4152c7167a5b6d 100644 (file)
@@ -55,3 +55,6 @@ The icon goes away once processing is complete, but if analysis report processin
 
 **Q.** Analysis errors out with `java.lang.OutOfMemoryError: GC overhead limit exceeded`. What do I do?  
 **A.** This means your project is too large or too intricate for the scanner to analyze with the default memory allocation. To fix this you'll want to allocate a larger heap (using `-Xmx[numeric value here]`) to the process running the analysis. Some CI engines may give you an input to specify the necessary values, for instance if you're using a Maven Build Step in a Jenkins job to run analysis. Otherwise, use Java Options to set a higher value. Note that details of setting Java Options are omitted here because they vary depending on the environment.
+
+**Q.** Analysis errors out with `PKIX path building failed`. What do I do? 
+**A.** This error tells you that your SonarQube server is configured with HTTPS and a custom SSL certificate. However, the certificate is not correctly configured in the scanner machine’s JVM. This configuration is outside of SonarQube scope. The server certificate is unknown and could not be validated with the provided truststore. You need to add the SonarQube server certificate to the Java truststore. See [Oracle's documentation](https://docs.oracle.com/cd/E19830-01/819-4712/ablqw/index.html) for more information.
\ No newline at end of file