Answers for "connect to postgresql from the command line"

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

connecting to a new database using postgresql sql shell

For Windows users using the SQL shell

c DB_NAME USER_NAME HOST PORT

// to get the connection details such as your username, host and port simply use the "conninfo" command

eg : c test1 john_doe localhost 5432
Posted by: Guest on November-24-2020

Code answers related to "connect to postgresql from the command line"

Browse Popular Code Answers by Language