How do login into vIDM database
- Arun Nukula

- Aug 17, 2020
- 1 min read
Updated: Jun 29, 2021
As a first step fetch the password using below command
cat /usr/local/horizon/conf/db.pwdExample:-
labidm:~ # cat /usr/local/horizon/conf/db.pwd
D4RSIrlpRNU5btYHYGOAySkFyykamPHaThen execute
psql -U horizon saasThis will prompt you to enter the password, copy the password extracted using the first command and then paste it and hit enter.
You would be logged into vIDM database
labidm:~ # psql -U horizon saas
Password for user horizon:
psql.bin (9.6.16 (VMware Postgres 9.6.16.0-15591078 release))
Type "help" for help.
saas=> Enter \dt at the saas=> prompt to list all the tables





Thank you for the content. Very helpful.