What is the default username and password for a fresh installation of SonarQube? Or how do you create a user?
Asked
Active
Viewed 1.1e+01k times
3 Answers
112
username: admin
password: admin
The default system administrator credentials are admin/admin.
Ahmad Nadeem
- 103
MikeFHay
- 2,754
2
If you are like me and have installed Sonarqube 6.4 using jdk 9 / jre 9 the login will always fail. This is due to the fact that java 9 is not supported. Please change the java version to 8 that is supported.
You can also point to a different java version in the conf/wrapper.conf file:
wrapper.java.command=/some/path/to/proper/jdk8
Valid jdk/jre options are found here: https://docs.sonarqube.org/display/SONAR/Requirements
Tobias
- 121
1
In Bitnami's official Docker implementation, the defaults are:
username: admin
password: bitnami
This worked for me on SonarQube 7.9.1.
jfmercer
- 241