]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-12595 fix documentation admin insert query
authorPierre Guillot <pierre.guillot@sonarsource.com>
Thu, 17 Oct 2019 07:25:45 +0000 (09:25 +0200)
committerSonarTech <sonartech@sonarsource.com>
Thu, 17 Oct 2019 18:21:03 +0000 (20:21 +0200)
server/sonar-docs/src/pages/instance-administration/security.md

index 55e18268aada3e5653008e717acf0c1615042cf0..ed04933d0d07cf1556dcf58afbb8c4b47ecd1bb9 100644 (file)
@@ -56,7 +56,10 @@ update users set crypted_password = '$2a$12$uCkkXmhW5ThVK8mpBvnXOOJRLd64LJeHTeCk
 ```
 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:
 ```
-INSERT INTO user_roles(user_id, role) VALUES ((select id from users where login='mylogin'), 'admin');
+INSERT INTO user_roles(user_id, role, organization_uuid) 
+VALUES ((select id from users where login='mylogin'), 
+admin', 
+(select uuid from organizations where kee='default-organization'));
 ```
 
 ## Authorization