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

  1. Install Homebrew if you don't have it:

    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  2. Install PostgreSQL:

    brew install postgresql
  3. Verify installation:

    pg_dump --version

Method 2: Using Postgres.app

  1. Download Postgres.app
  2. Move to Applications folder and open
  3. Add to your PATH:
    sudo mkdir -p /etc/paths.d && echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp
  4. Restart your terminal
  5. Verify installation:
    pg_dump --version

Ubuntu

  1. Update package lists:

    sudo apt update
  2. Install PostgreSQL client:

    sudo apt install postgresql-client
  3. 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

  1. 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
  2. Install PostgreSQL client:

    sudo yum install -y postgresql14
  3. Verify installation:

    pg_dump --version

For CentOS/RHEL 8.x and above

  1. 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
  2. Disable built-in PostgreSQL module:

    sudo dnf -qy module disable postgresql
  3. Install PostgreSQL client:

    sudo dnf install -y postgresql14
  4. Verify installation:

    pg_dump --version

Windows

Method 1: Full PostgreSQL Installation

  1. Download the PostgreSQL installer from https://www.postgresql.org/download/windows/
  2. Run the installer and follow the setup wizard
  3. Deselect components you don't need (e.g., pgAdmin, StackBuilder)
  4. Complete the installation
  5. 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
  6. Open a new Command Prompt and verify:
    pg_dump --version

Method 2: Using the ZIP Version (Client-Only)

  1. Download the ZIP archive from https://www.enterprisedb.com/download-postgresql-binaries
  2. Extract to a location (e.g., C:\pgsql)
  3. 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
  4. 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

  1. Command not found: Ensure PostgreSQL bin directory is in your PATH
  2. Permission denied: Ensure you have proper permissions to run the command
  3. Connection refused: Check hostname, port, and ensure PostgreSQL server is running
  4. 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
Edit this page on GitHub