Thanks for your very complete report. On Fri, May 9, 2014 at 12:43 PM, <[email protected]> wrote: > 2014-05-09 14:55:14 EDT WARNING: WAL was generated with wal_level=minimal, > data may be missing > 2014-05-09 14:55:14 EDT HINT: This happens if you temporarily set > wal_level=minimal without taking a new base backup. > 2014-05-09 14:55:14 EDT FATAL: hot standby is not possible because > wal_level was not set to "hot_standby" on the master server
This is your problem. Postgres records as little information as possible to do crash recovery at some "level". For DR you need at least level "archive", and for the hot standby feature you need the level at "hot_standby". Have you looked at http://www.postgresql.org/docs/9.3/static/runtime-config-wal.html on the subject? It looks like you are doing everything right except this one tweak to postgresql.conf. -- You received this message because you are subscribed to the Google Groups "wal-e" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
