Resolution
Update the hash value of the admin password for the VMware vCenter Operations Manager in the Postgres database.
- Sign in as the admin user in the UI virtual machine.
- Generate the hash value by running the command for the admin password.
vcops-admin encrypt admin_user_password
Note: following output of similar kind will be returned.
migh37DFXib3pMyU8+Gfpw==@
3. Login as root user to the Analytics virtual machine.
4. Run the following command to shift to the Postgres user account.
su – Postgres
5. Run the command to launch the psql utility.
psql –d alivevm
[alert]Note: prompt changes to alivevm=#.[/alert]
6. Using the hash value returned in the 2nd step update the admin user password, by executing a command analogous to:
update useraccount set password=’migh37DFXib3pMyU8+Gfpw ==@’ where useraccount=’admin’;
Note: Replace
migh37DFXib3pMyU8+Gfpw==@
with the value returned in the 2nd step.
7. By running the following command exit psql utility.
\q