In a production environment, no matter how large or small your PostgreSQL database may be, regular backup is an essential aspect of database management. In this article, you will learn how to backup and restore a PostgreSQL database.
We assume that you already have a working installation of the PostgreSQL database system. If not, read our following articles to install PostgreSQL on your Linux distribution.
You might also like:
- How to Install PostgreSQL from Source in Linux
- How to Install PostgreSQL and pgAdmin4 in Ubuntu 20.04
- How to Install PostgreSQL 15 and pgAdmin in RHEL 9
- How to Install PostgreSQL and pgAdmin in CentOS 8
- How to Install PostgreSQL and pgAdmin in RHEL 8
Let’s get started…
Backup a Single PostgreSQL Database
PostgreSQL provides the pg_dump utility to help you back up databases. It generates a database file with SQL commands in a format that can be easily restored in the future.
To back up a PostgreSQL database, start by logging into your database server, then switch to the Postgres user account, and run pg_dump as follows (replace tecmintdb
with the name of the database you want to backup). By default, the output format is a plain-text SQL script file.
<code>$ pg_dump <strong>tecmintdb</strong> > <strong>tecmintdb.sql</strong></code>
The pg_dump supports other output formats as well. You can specify the output format using the -F
option, where c
means custom format archive file, d
means directory format archive, and t
means tar format archive file: all formats are suitable for input into pg_restore.
For example:
<code>$ pg_dump -F c tecmintdb > tecmintdb.dump OR $ pg_dump -F t tecmintdb > tecmintdb.tar</code>
To dump output in the directory output format, use the -f
flag (which is used to specify the output file) to specify the target directory instead of a file. The directory which will be created by pg_dump must not exist.
<code>$ pg_dump -F d tecmintdb -f tecmintdumpdir </code>
To back up all PostgreSQL databases, use the pg_dumpall tool as shown.
<code>$ pg_dumpall > all_pg_dbs.sql</code>
You can restore the dump using psql as shown.
<code>$ psql -f all_pg_dbs.sql postgres</code>
Restoring a PostgreSQL Database
To restore a PostgreSQL database, you can use the psql or pg_restore utilities. psql is used to restore text files created by pg_dump whereas pg_restore is used to restore a PostgreSQL database from an archive created by pg_dump in one of the non-plain-text formats (custom, tar, or directory).
Here is an example of how to restore a plain text file dump:
<code>$ psql <strong>tecmintdb</strong> tecmintdb.sql</code>
As mentioned above, a custom-format dump is not a script for psql, so it must be restored with pg_restore as shown.
<code>$ pg_restore -d tecmintdb tecmintdb.dump OR $ pg_restore -d tecmintdb tecmintdb.tar OR $ pg_restore -d tecmintdb tecmintdumpdir </code>
Compressed PostgreSQL Database Backup
If the database you are backing up is large and you want to generate a fairly smaller output file, then you can run a compressed dump where you have to filter the output of pg_dump via a compression tool such as gzip or any of your favorite:
<code>$ pg_dump <strong>tecmintdb</strong> | gzip > <strong>tecmintdb.gz</strong></code>
If the database is extremely large, you can dump in parallel by dumping number_of_jobs tables simultaneously using the -j
flag, as shown.
<code>$ pg_dump -F d -j 5 -f tecmintdumpdir</code>
It is important to note that the parallel dump option reduces the time of the dump, but on the other hand, it also increases the load on the database server.
Backup Remote PostgreSQL Databases
pg_dump is a regular PostgreSQL client tool, it supports operations on remote database servers. To specify the remote database server pg_dump should contact, use the command-line options -h
to specify the remote host and -p
specifies the remote port the database server is listening on. Besides, use the -U
flag to specify the database role name to connect as.
Remember to replace 10.10.20.10 and 5432 and tecmintdb with your remote host IP address or hostname, database port, and database name respectively.
<code>$ pg_dump -U tecmint -h 10.10.20.10 -p 5432 tecmintdb > tecmintdb.sql</code>
Ensure that the user connecting remotely has the required privileges to access the database, and the appropriate database authentication method is configured on the database server, otherwise, you will get an error like the one shown in the following screenshot.
It is also possible to dump a database directly from one server to another, use the pg_dump and psql utilities as shown.
<code>$ pg_dump -U tecmint -h 10.10.20.10 tecmintdb | pqsl -U tecmint -h 10.10.20.30 tecmintdb</code>
Auto Backup PostgreSQL Database Using a Cron Job
You can perform backups at regular intervals using cron jobs. Cron jobs are a commonly used means for scheduling various kinds of tasks to run on a server.
You can configure a cron job to automate PostgreSQL database backup as follows. Note that you need to run the following commands as the PostgreSQL superuser:
<code>$ mkdir -p /srv/backups/databases</code>
Next, run the following command to edit the crontab to add a new cron job.
<code>$ crontab -e</code>
Copy and paste the following line at the end of the crontab. You can use any of the dump formats explained above.
<code>0 0 * * * pg_dump -U postgres tecmintdb > /srv/backups/postgres/tecmintdb.sql</code>
Save the file and exit.
The cron service will automatically start running this new job without a restart. And this cron job will run every day at midnight, it is a minimum solution to the backup task.
For more information on how to schedule cron jobs, see: How to Create and Manage Cron Jobs on Linux
That’s it for now! It’s a good idea to make backing up data a part of your database management routine. To reach us for any questions or comments, use the feedback form below. For more information, see the pg_dump and pg_restore reference pages.
The above is the detailed content of How to Backup and Restore a PostgreSQL Database. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

While writing program files or normal text files, programmers and writers sometimes want to know the difference between two files or two versions of the same file. When you compare two computer files on Linux, the difference between their contents is

There are three ways to create empty files in the command line: First, the simplest and safest use of the touch command, which is suitable for debugging scripts or placeholder files; Second, it is quickly created through > redirection but will clear existing content, which is suitable for initializing log files; Third, use echo"> file name to create a file with an empty string, or use echo-n""> file name to avoid line breaks. These three methods have their own applicable scenarios, and choosing the right method can help you complete the task more efficiently.

Are you looking for good software to write mathematical equations? If so, this article provides the top 5 equation editors that you can easily install on your favorite Linux distribution.In addition to being compatible with different types of mathema

dutree is a free, open-source, fast command-line tool for analyzing disk usage, written in the Rust programming language. It was created by combining durep (disk usage reporter) and tree (list directory content in tree-like format) command-line tools

Eclipse is a free integrated development environment (IDE) that programmers around the world use to write software, primarily in Java, but also in other major programming languages using Eclipse plugins.The latest release of Eclipse IDE 2023?06 does

ifconfig in short “interface configuration” utility for system/network administration in Unix/Linux operating systems to configure, manage, and query network interface parameters via command-line interface or in a system configuration scripts

Linux administrators should be familiar with the command-line environment. Since GUI (Graphical User Interface) mode in Linux servers is not commonly installed.SSH may be the most popular protocol to enable Linux administrators to manage the servers

Linux has a rich collection of commands, and while many of them are powerful and useful for various tasks, there are also some funny and whimsical commands that you can try out for amusement. 1. sl Command (Steam Locomotive) You might be aware of the
