Connecting to a PostgreSQL Database from the Command Line
Jan 08, 2025
2 min read
PostgreSQL is a powerful open-source relational database management system. Connecting to a PostgreSQL database from the command line is essential for database administration, querying, and scripting. This guide walks you through installing libpq
, using connection strings, and exploring alternative connection methods.
Installing libpq
#
The PostgreSQL client library, libpq
, includes essential command-line tools such as psql
, which allows you to interact with a PostgreSQL database. Here’s how to install it on different operating systems:
Linux (Debian/Ubuntu) #
macOS (Using Homebrew) #
If you receive a message that libpq
is keg-only, you may need to manually add it to your system’s PATH. To make these configurations permanent in the Fish shell, add the following lines to your config.fish
file (located at ~/.config/fish/config.fish
):
Save the file and restart your terminal or run source ~/.config/fish/config.fish
to apply the changes immediately.
Windows #
For Windows, install the PostgreSQL binaries, which include libpq
. You can download them from the official PostgreSQL website. Alternatively, you can use the Windows Subsystem for Linux (WSL) and install libpq
as on Linux.
Connecting to a PostgreSQL Database #
Once libpq
is installed, you can use psql
to connect to a PostgreSQL database. There are multiple ways to specify the connection details.
Using a Connection String #
A connection string is a compact way to provide all necessary parameters in a single string. The general format is:
If you have SSL enabled, you can modify the connection string like this:
Using Individual Parameters #
Instead of using a connection string, you can specify each parameter separately:
You will be prompted to enter the password unless using a password file (~/.pgpass
).
Using Environment Variables #
PostgreSQL allows setting environment variables to avoid passing credentials in the command line. Common variables include:
This method improves security by avoiding credentials in command history.
Using a .pgpass
File #
For automatic authentication without entering a password each time, create a ~/.pgpass
file:
Now, psql
will read credentials from this file without prompting for a password.
Share this article