2 O.1. recovery.conf file merged into postgresql.conf #
4 PostgreSQL 11 and below used a configuration file named recovery.conf
5 to manage replicas and standbys. Support for this file was removed in
6 PostgreSQL 12. See the release notes for PostgreSQL 12 for details on
9 On PostgreSQL 12 and above, archive recovery, streaming replication,
10 and PITR are configured using normal server configuration parameters.
11 These are set in postgresql.conf or via ALTER SYSTEM like any other
14 The server will not start if a recovery.conf exists.
16 PostgreSQL 15 and below had a setting promote_trigger_file, or
17 trigger_file before 12. Use pg_ctl promote or call pg_promote() to
18 promote a standby instead.
20 The standby_mode setting has been removed. A standby.signal file in the
21 data directory is used instead. See Standby Server Operation for