Hi @sumukha.prasanna,
I reproduced the problem and will notify our documentation team to update the guide. In the meantime, you can update the password by following these steps:
- Get the salt value of your user (I'm going to use "admin")
psql --username=postgres bitnami_sonarqube -c "select * from users where login='admin';"
- Once you get the salt, go to this site
http://www.sha1-online.com/
and hash your password using the salt. The format is the following one
--SALT_VALUE_YOU_GOT--NEW_PASSWORD--
- Get the value the website returns and run this command to update the database
psql --username=postgres bitnami_sonarqube -c "UPDATE users SET crypted_password='HASHED_PASSWORD_HERE', hash_method='SHA1' WHERE login='admin';"
- Try to log in to the app again
Happy to help!
Was my answer helpful? Click on 