diff options
author | kevin.hinz <107544908+kevin-hinz@users.noreply.github.com> | 2022-07-21 16:44:27 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-07-21 20:03:06 +0000 |
commit | dcba4f6bc9ec86fb2313dadc97f4584cd512c55b (patch) | |
tree | 90de4e3a4bac4bb8adb91f3a07f723859f412659 /server/sonar-docs/src/pages/analysis/overview.md | |
parent | 38e8c4b38d1bc4bcc982349ce5ec3761b11a1398 (diff) | |
download | sonarqube-dcba4f6bc9ec86fb2313dadc97f4584cd512c55b.tar.gz sonarqube-dcba4f6bc9ec86fb2313dadc97f4584cd512c55b.zip |
Docs/kevin/doc-21 (#6315)
* Clean as you code link. (d2/2)
* minor text clarification
* minor text removal
* Update server/sonar-docs/src/pages/analysis/pull-request.md
Co-authored-by: Philippe Perrin <philippe.perrin@sonarsource.com>
* fix typo on 1st comment
* fix typo on 1st comment
* fix typo on 1st comment
* fix typo on 1st comment
Co-authored-by: Philippe Perrin <philippe.perrin@sonarsource.com>
Diffstat (limited to 'server/sonar-docs/src/pages/analysis/overview.md')
-rw-r--r-- | server/sonar-docs/src/pages/analysis/overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-docs/src/pages/analysis/overview.md b/server/sonar-docs/src/pages/analysis/overview.md index 681b70caecd..8598032e3a9 100644 --- a/server/sonar-docs/src/pages/analysis/overview.md +++ b/server/sonar-docs/src/pages/analysis/overview.md @@ -56,5 +56,5 @@ 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? +**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. |