Answers for "how to connect postgres remote host"

5

how to connect to remote postgres database from command line

psql -h <IP_Address> -p <port_no> -d <database_name> -U <DB_username> -W

-W option will prompt for password

psql -h 192.168.1.50 -p 5432 -d testdb -U testuser -W
Posted by: Guest on September-25-2020
2

how to access remote pstgres

psql -U postgres DATABASE_NAME < backup.sql
Posted by: Guest on August-11-2020

Code answers related to "how to connect postgres remote host"

Browse Popular Code Answers by Language