Home > OS >  Connection problems to RDS Postgres instance
Connection problems to RDS Postgres instance

Time:09-18

Trying to connect to my AWS RDS Postgres DB and having some problems..

  • Created an initial DB in RDS configuration when created the DB instance and named it test_db

ERROR IM GETTING :

psql postgres://Username:Password@Host(RDS instance endpoint):Port/test_db
psql: error: FATAL:  database <user> does not exist

THNAKS !!

CodePudding user response:

Found what i was looking for ( used postgres as DB name instead what i tried previously

psql postgres://Username:Password@Host(RDS instance endpoint):Port/postgres
  • Related