Re: Postgres online backup and restore - Mailing list pgsql-general

From Scott Mead
Subject Re: Postgres online backup and restore
Date
Msg-id d3ab2ec80906301735sebb815dxe04169f3df40e24c@mail.gmail.com
Whole thread Raw
In response to Postgres online backup and restore  ("Chris Barnes" <cbarnes@recognia.com>)
List pgsql-general
On Thu, Jun 25, 2009 at 9:40 AM, Chris Barnes <cbarnes@recognia.com> wrote:

Sorry if posting twice, wasn’t part of general when sent and didn’t see it received by group.

  I started an online backup of postgres, tar’d my data folder, copy to usb drive in production
and restored it into my RC environment. Have I missed something important?

Online Backup

psql

checkpoint;

SELECT pg_switch_xlog();

SELECT pg_start_backup('postres_full_backup_June222009');

tar -czvf pgprd01_June22_2009_production.dmp.tar.gz data/

SELECT pg_stop_backup();

Restore

tar –xzvf pgprd01_June22_2009_production.dmp.tar.gz

 

When starting the database I receive many errors that look like the backup was corrupted.


You missed the all-important step of also taking your archived log files to the remote environment and creating the recovery.conf file:

    Note section 24.3.3.1

--Scott

pgsql-general by date:

Previous
From: Scott Mead
Date:
Subject: Re: Postgres online backup and restore
Next
From: Craig Ringer
Date:
Subject: Re: [Fwd: Re: Python client + select = locked resources???]