Reputation: 193
I am trying to run "psql" on Amazon Lightsail, Django instance.
psql
Password for user bitnami:
psql.bin: FATAL: password authentication failed fo
r user "bitnami"
It doesn't work even though I got bitnami's password through
cat bitnami_application_password
Upon further review, it seems that there are multiple types of psql installed on the Amazon Lightsail instance.
Any suggestions?
Upvotes: 1
Views: 434
Reputation: 79
sudo -u postgres psql
then when asking for password put the password came from bitnami_application_password
Upvotes: 1