Answers for "how to connect to postgres database"

SQL
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
1

access the postgres psql

psql -h localhost -U username databasename
Posted by: Guest on August-05-2020
1

psql connect

psql -d gpdatabase -h master_host -p 5432 -U gpadmin
Posted by: Guest on July-13-2021
0

postgresql connect to database command line

user@user-pc:~$ sudo -i -u postgres
postgres@user-pc:~$ psql
psql (9.3.5, server 9.3.6)
Type "help" for help.
Posted by: Guest on February-18-2021

Code answers related to "how to connect to postgres database"

Code answers related to "SQL"

Browse Popular Code Answers by Language