author avatar

soniya.rayabagi

Wed Jul 03 2024

To connect to the PostgreSQL RDS instance using psql:

psql -h ${postgres_host} -U "${postgres_username}" -d ${postgres_database} -W

where, ${postgres_host}: variable representing the PostgreSQL host or db endpoint

#devops #PostgreSQLConnection #rds