Galen BlueTalon
Galen BlueTalon

Reputation: 193

Running psql on Amazon Django Lightsail

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

Answers (1)

ohmcodes
ohmcodes

Reputation: 79

sudo -u postgres psql

then when asking for password put the password came from bitnami_application_password

Upvotes: 1

Related Questions