PostgreSQL is a one of the robust, open source database server. Like MySQL database server, it provides utilities for creating a backup.
Type the following command:
$ su - pgsql
Get list of database(s) to backup:
$ psql -l
Backup database using pg_dump command. pg_dump is a utility for backing up a PostgreSQL database. It dumps only one database at a time. General syntax:
pg_dump databasename > outputfile
Type the following command
$ pg_dump payroll > payroll.dump.out
To restore a payroll database:
$ psql -d payroll -f payroll.dump.out
OR$ createdb payroll
However, in real life you need to compress database:
$ psql payroll $ pg_dump payroll | gzip -c > payroll.dump.out.gz
To restore database use the following command:$ gunzip payroll.dump.out.gz
Here is a shell script for same task:
$ psql -d payroll -f payroll.dump.out
#!/bin/bash
DIR=/backup/psql
[ ! $DIR ] && mkdir -p $DIR || :
LIST=$(psql -l | awk '{ print $1}' | grep -vE '^-|^List|^Name|template[0|1]')
for d in $LIST
do
pg_dump $d | gzip -c > $DIR/$d.out.gz
done
Another option is use to pg_dumpall command. As a name suggest it dumps (backs up) each database, and preserves cluster-wide data such as users and groups. You can use it as follows:$ pg_dumpall > all.dbs.out
OR$ pg_dumpall | gzip -c > all.dbs.out.gz
To restore backup use the following command:
$ psql -f all.dbs.out postgres
References: