【sonarqube】sonarqube 9.2.4恢复默认管理员密码

1. 解决办法

打开数据库,数据库配置文件一般在conf/sonar.properties文件中配置
在数据库中执行如下sql,将管理员admin密码重置为admin

postgres=# \c sonarqube
sonar=# update users set crypted_password = '$2a$12$uCkkXmhW5ThVK8mpBvnXOOJRLd64LJeHTeCkSuB3lfaR2N0AYBaSi',salt=null, hash_method='BCRYPT' where login = 'admin';

2. 截图

 

posted @ 2021-12-28 17:15  代码诠释的世界  阅读(2139)  评论(0编辑  收藏  举报