Re: Postgres online backup and restore

Поиск
Список
Период
Сортировка
От Scott Mead
Тема Re: Postgres online backup and restore
Дата
Msg-id d3ab2ec80906301705v4a792f07gb3a4dfdcacefa6c4@mail.gmail.com
обсуждение исходный текст
Ответ на Postgres online backup and restore  ("Chris Barnes" <cbarnes@recognia.com>)
Список 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 по дате отправления:

Предыдущее
От: johnf
Дата:
Сообщение: Re: BETWEEN not matching on timestamp value
Следующее
От: Scott Mead
Дата:
Сообщение: Re: Postgres online backup and restore