【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. 截图