]> source.dussan.org Git - sonarqube.git/commitdiff
fix the admin password reset query
authorPierre <pierre.guillot@sonarsource.com>
Mon, 8 Feb 2021 16:18:48 +0000 (17:18 +0100)
committersonartech <sonartech@sonarsource.com>
Tue, 9 Feb 2021 20:07:16 +0000 (20:07 +0000)
server/sonar-docs/src/pages/instance-administration/security.md

index 24e5cba9e60f100eee1aedd31413eb2675a92d22..c7acc9cc0e348a894505d89f2c82a6ec3fdecf85 100644 (file)
@@ -94,7 +94,7 @@ When installing SonarQube, a default user with Administer System permission is c
 ## Reinstating Admin Access
 If you changed and then lost the `admin` password, you can reset it using the following query:
 ```
-update users set crypted_password = '$2a$12$uCkkXmhW5ThVK8mpBvnXOOJRLd64LJeHTeCkSuB3lfaR2N0AYBaSi', salt=null, hash_method='BCRYPT', reset_password=true where login = 'admin'
+update users set crypted_password = '$2a$12$uCkkXmhW5ThVK8mpBvnXOOJRLd64LJeHTeCkSuB3lfaR2N0AYBaSi', salt=null, hash_method='BCRYPT', reset_password='true' where login = 'admin'
 ```
 If you've deleted `admin` and subsequently locked out the other users with global administrative permissions, you'll need to re-grant `admin` to a user with the following query:
 ```