Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Restore a postgres backup file using the command line?

I'm new to postgresql, and locally, I use pgadmin3. On the remote server, however, I have no such luxury.

I've already created the backup of the database and copied it over, but, is there a way to restore a backup from the command line? I only see things related to GUI or to pg_dumps, so, if someone can tell me how to go about this, that'd be terrific!

like image 717
TwixxyKit Avatar asked Apr 28 '10 19:04

TwixxyKit


People also ask

How do I restore a backup file in PostgreSQL?

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).

Where is Postgres backup file located?

Go to command prompt and directory postgresql\9.3\bin. .. c:\Program files\postgresql\9.3\bin> pg_dump -h localhost -p 5432 -U postgres test > D:\backup.


2 Answers

There are two tools to look at, depending on how you created the dump file.

Your first source of reference should be the man page pg_dump(1) as that is what creates the dump itself. It says:

Dumps can be output in script or archive file formats. Script dumps are plain-text files containing the SQL commands required to reconstruct the database to the state it was in at the time it was saved. To restore from such a script, feed it to psql(1). Script files can be used to reconstruct the database even on other machines and other architectures; with some modifications even on other SQL database products.

The alternative archive file formats must be used with pg_restore(1) to rebuild the database. They allow pg_restore to be selective about what is restored, or even to reorder the items prior to being restored. The archive file formats are designed to be portable across architectures.

So depends on the way it was dumped out. You can probably figure it out using the excellent file(1) command - if it mentions ASCII text and/or SQL, it should be restored with psql otherwise you should probably use pg_restore

Restoring is pretty easy:

psql -U username -d dbname < filename.sql  -- For Postgres versions 9.0 or earlier psql -U username -d dbname -1 -f filename.sql 

or

pg_restore -U username -d dbname -1 filename.dump 

Check out their respective manpages - there's quite a few options that affect how the restore works. You may have to clean out your "live" databases or recreate them from template0 (as pointed out in a comment) before restoring, depending on how the dumps were generated.

like image 111
Steven Schlansker Avatar answered Sep 24 '22 13:09

Steven Schlansker


create backup

pg_dump -h localhost -p 5432 -U postgres -F c -b -v -f  "/usr/local/backup/10.70.0.61.backup" old_db 

-F c is custom format (compressed, and able to do in parallel with -j N) -b is including blobs, -v is verbose, -f is the backup file name

restore from backup

pg_restore -h localhost -p 5432 -U postgres -d old_db -v  "/usr/local/backup/10.70.0.61.backup" 

important to set -h localhost - option

like image 26
Alex Deemann Avatar answered Sep 24 '22 13:09

Alex Deemann