*Using sonarqube 8.7 version on windows whit sql server
I´m trying to login at admin site by http://localhost:9000/ and I just get a json at the browser insted of sonarqube login.
The json I get in the browser is the follow :
{
“name” : “sonarqube”,
“cluster_name” : “sonarqube”,
“cluster_uuid” : “oSz0ztULTTecwW4z1IfZkg”,
“version” : {
“number” : “7.10.2”,
“build_flavor” : “unknown”,
“build_type” : “unknown”,
“build_hash” : “747e1cc71def077253878a59143c1f785afa92b9”,
“build_date” : “2021-01-13T00:42:12.435326Z”,
“build_snapshot” : false,
“lucene_version” : “8.7.0”,
“minimum_wire_compatibility_version” : “6.8.0”,
“minimum_index_compatibility_version” : “6.0.0-beta1”
},
“tagline” : “You Know, for Search”
}
Someonse knows what shoud I do to get loged at admin site??
It appears like you’ve somehow managed to reach the embedded Elasticsearch subprocess instead of our normal web port. Did you configure nonstandard ports?
If it’s a zip-based installation, visit your sonar.properties file and check out the values for sonar.web.port (should default to 9000) and sonar.search.port (should default to 9001). If you’re using Docker, check your environment variables SONAR_WEB_PORT and SONAR_SEARCH_PORT instead.
Hi Jeff, thanks for the welcome
I appreciate you help, this was exaclty my problem, I was changed sonar.search.port=9001 by sonar.search.port=8080 because my port 9001 was bussy whit other process.
The solution was set 0 at sonar.search.port like this sonar.search.port=0.