76

What is the default username and password for a fresh installation of SonarQube? Or how do you create a user?

MikeFHay
  • 2,754

3 Answers3

112
username: admin
password: admin

The default system administrator credentials are admin/admin.

Installing the SonarQube server from the ZIP file

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