Ken
unread,Feb 8, 2012, 3:31:34 PM2/8/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pg_rman
Figured it out...
You should set up a directory owned by postgres for your archive log
backups. e.g., /home/postgres/arclog
Then in your postgresql.conf, it should read:
archive_command = 'cp "%p" "/home/postgres/arclog/%f"'
Ideally, these are placed on a separate drive from your data drive for
backup protection. And backups should be done to a different drive as
well, then you can rsync it off to a different server.
BTW, there's a bug in the documentation. This line:
-b { full | incremental | archive } / --backup-mode={ full |
incremental | archive }
Should be:
-b { f | i | a } / --backup-mode={ full | incremental | archive }