Status returned by url [http://localhost:9000/batch/index] is not valid: [503]

Hi All, need your help.
Maven version : 3.6
SonarQube Server version : 7.6

I have done the changes required in settings.xml as written in this(https://docs.sonarqube.org/latest/analysis/scan/sonarscanner-for-maven/)
With that I have also added dependecy in .pom file with groupID :- (org.sonarsource.scanner.maven) with version 3.2.

After that I run the maven build goal as : clean install
Build Successfull

Then I run the maven build as : sonar:sonar -e

Here’s the error :
‘’’
[ERROR] Failed to execute goal org.sonarsource.scanner.maven:sonar-maven-plugin:3.7.0.1746:sonar (default-cli) on project xyz: Unable to execute SonarQube: Fail to get bootstrap index from server: Status returned by url [http://localhost:9000/batch/index] is not valid: [503] -> [Help 1]

org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.sonarsource.scanner.maven:sonar-maven-plugin:3.7.0.1746:sonar (default-cli) on project xyz: Unable to execute SonarQube
‘’’

Hi,

Welcome to the community!

Your error message is telling you that it can’t find a SonarQube server on localhost. Do you have SonarQube running there? If not, you need to make sure that either you pass the server URL as a command line parameter (-Dsonar.host.url=...) or make sure it’s defined in the settings.xml that’s being used during analysis. If you’ve already configured that in a settings.xml it might not be the one that’s actually in use.

 
HTH,
Ann

Thanks a lot Ann. It worked.

1 Like