How to install pg_dump on your Mac, Ubuntu, CentOS, Windows
pg_dump
is part of the PostgreSQL client utilities and doesn't come as a standalone tool. This guide covers how to install PostgreSQL client tools (including pg_dump
) on various operating systems.
Mac OS
Method 1: Using Homebrew (Recommended)
-
Install Homebrew if you don't have it:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
-
Install PostgreSQL:
brew install postgresql
-
Verify installation:
pg_dump --version
Method 2: Using Postgres.app
- Download Postgres.app
- Move to Applications folder and open
- Add to your PATH:
sudo mkdir -p /etc/paths.d && echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp
- Restart your terminal
- Verify installation:
pg_dump --version
Ubuntu
-
Update package lists:
sudo apt update
-
Install PostgreSQL client:
sudo apt install postgresql-client
-
Verify installation:
pg_dump --version
To install a specific PostgreSQL version (e.g., PostgreSQL 14):
sudo apt install postgresql-client-14
CentOS/RHEL
For CentOS/RHEL 7.x
-
Add PostgreSQL official repository:
sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
-
Install PostgreSQL client:
sudo yum install -y postgresql14
-
Verify installation:
pg_dump --version
For CentOS/RHEL 8.x and above
-
Add PostgreSQL official repository:
sudo dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
-
Disable built-in PostgreSQL module:
sudo dnf -qy module disable postgresql
-
Install PostgreSQL client:
sudo dnf install -y postgresql14
-
Verify installation:
pg_dump --version
Windows
Method 1: Full PostgreSQL Installation
- Download the PostgreSQL installer from https://www.postgresql.org/download/windows/
- Run the installer and follow the setup wizard
- Deselect components you don't need (e.g., pgAdmin, StackBuilder)
- Complete the installation
- Add PostgreSQL bin directory to your PATH:
- Go to Control Panel > System and Security > System > Advanced system settings
- Click "Environment Variables"
- Edit PATH variable and add:
C:\Program Files\PostgreSQL\<version>\bin
- Open a new Command Prompt and verify:
pg_dump --version
Method 2: Using the ZIP Version (Client-Only)
- Download the ZIP archive from https://www.enterprisedb.com/download-postgresql-binaries
- Extract to a location (e.g.,
C:\pgsql
) - Add bin directory to PATH:
- Go to Control Panel > System and Security > System > Advanced system settings
- Click "Environment Variables"
- Edit PATH variable and add:
C:\pgsql\bin
- Open a new Command Prompt and verify:
pg_dump --version
Using pg_dump
Basic usage:
pg_dump -h hostname -p port -U username -d dbname -f output.sql
Examples:
# Dump in plain SQL format
pg_dump -h localhost -U postgres -d mydb -f backup.sql
# Dump in custom format (compressed)
pg_dump -h localhost -U postgres -d mydb -F c -f backup.dump
# Dump schema only
pg_dump -h localhost -U postgres -d mydb --schema-only -f schema.sql
# Dump specific tables
pg_dump -h localhost -U postgres -d mydb -t table1 -t table2 -f tables.sql
Troubleshooting
Common Issues
- Command not found: Ensure PostgreSQL bin directory is in your PATH
- Permission denied: Ensure you have proper permissions to run the command
- Connection refused: Check hostname, port, and ensure PostgreSQL server is running
- Authentication failed: Verify username and password
Environment Variables
Setting up environment variables can make using pg_dump easier:
export PGHOST=localhost
export PGPORT=5432
export PGUSER=postgres
export PGPASSWORD=yourpassword # Not recommended for security reasons
For Windows:
set PGHOST=localhost
set PGPORT=5432
set PGUSER=postgres
set PGPASSWORD=yourpassword # Not recommended for security reasons