Mikael Balin

How to create backups of a PostgreSQL database

Jan 15, 2025

2 min read

Database

Backups are an essential part of database management. They ensure that in case of data loss, corruption, or accidental deletions, your valuable information remains safe. This guide will provide clear instructions on how to create PostgreSQL backups and restore them effectively.

The Classic Backup Method (pg_dump to the Rescue) #

The easiest way to back up a PostgreSQL database is with pg_dump. This tool allows you to create a backup of your database that can be restored when needed.

Basic Command: #

pg_dump -U your_user -d your_database -F c -f backup_file.dump
  • -U your_user → Your PostgreSQL username
  • -d your_database → The name of your database
  • -F c → Custom format (allows better compression and flexibility)
  • -f backup_file.dump → The file where your data will be stored

Want a plain-text SQL file instead? Just replace -F c with -F p (or omit it entirely). This way, you can read and manually inspect your backup if necessary.

Restoring Your Database #

If you need to restore your database, use the following command:

pg_restore -U your_user -d new_database backup_file.dump

Or, if you used plain SQL format:

psql -U your_user -d new_database -f backup_file.sql

This process ensures that your database is restored efficiently and accurately.

Automating Your Backups #

To ensure backups are performed consistently, automate the process using cron jobs.

Example Daily Backup (Linux/macOS) #

0 2 * * * pg_dump -U your_user -d your_database -F c -f /backups/db_$(date +\%F).dump

This schedules a backup every night at 2 AM, ensuring regular backups without manual intervention.

Backing Up PostgreSQL in Docker #

If you are using PostgreSQL in Docker, you can still create and restore backups easily.

Step 1: Identify Your Container #

Find your running PostgreSQL container:

docker ps

Locate the CONTAINER_ID or name.

Step 2: Create a Backup #

docker exec -t CONTAINER_ID pg_dump -U your_user -d your_database -F c -f /backup/backup_file.dump

This creates a backup inside the container. To store it safely, copy it to your host system:

docker cp CONTAINER_ID:/backup/backup_file.dump .

Restoring from Docker Backup #

Copy the backup file back into the container:

docker cp backup_file.dump CONTAINER_ID:/backup/backup_file.dump

Then, restore it:

docker exec -t CONTAINER_ID pg_restore -U your_user -d new_database /backup/backup_file.dump

This process ensures that your database is restored properly.

Bonus Tips for Extra Security #

  • Use WAL Archiving – If you need point-in-time recovery, enable WAL (Write-Ahead Logging) archiving.
  • Cloud Storage – Store backups in the cloud (AWS S3, Google Cloud, etc.) to ensure data safety.
  • Test Your Backups – Regularly restore backups to verify they are working correctly.
  • Encrypt Sensitive Backups – Use encryption tools like gpg to secure your backups:
gpg --output backup_file.dump.gpg --encrypt --recipient your_email backup_file.dump
  • To decrypt:
gpg --output backup_file.dump --decrypt backup_file.dump.gpg

Backups are essential for preventing data loss and ensuring recovery in case of an issue. Setting up automated backups will provide peace of mind and safeguard your PostgreSQL data effectively.

Implement these strategies today to ensure your database remains protected.

Share this article