Sonarqube gradle execution upload failed

I am running sonarqube using gradle command ./gradlew sonarqube -Dsonar.host.url=https://sonar-server-url. I am getting error
Failed to upload report - HTTP code 413
413 Request Entity Too Large

  • I am using sonarserver version : Community Edition Version 7.8
  • I am running sonar report using gradle command: ./gradlew sonarqube -Dsonar.host.url=https://sonar-server-url
  • I am getting error Failed to upload report.
  • Sonarqube server is on oracle cloud and the report file size is 10M.

Hi @Vineeth_NG ,

welcome to the community :wave:

the http code comes from your reverse proxy. you have to increase the client_max_body_size parameter if you are using nginx or the equivalent in the reverse proxy that you are using

hope that helps