Connecting to PostgreSQL using psql
To connect to PostgreSQL from the command line, follow these steps:- Log in to your account using SSH.
-
At the command line, type the following command. Replace dbname with the name of the database, and username with the database username:
- At the Password prompt, type the database user’s password. When you type the correct password, the psql prompt appears.
-
After you access a PostgreSQL database, you can run SQL queries and more. Here are some common psql commands:
-
To view help for psql commands, type
\?. -
To view help for SQL commands, type
\h. -
To view information about the current database connection, type
\conninfo. -
To list the database’s tables and their respective owners, type
\dt. -
To list all of the tables, views, and sequences in the database, type
\z. -
To exit the psql program, type
\q.
-
To view help for psql commands, type
More information
- To view the online documentation for psql in PostgreSQL 8.4, please visit http://www.postgresql.org/docs/8.4/static/app-psql.html.
- To view the online documentation for psql in PostgreSQL 9.1, please visit http://www.postgresql.org/docs/9.1/static/app-psql.html.