diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-10-10 10:15:45 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-10-10 10:16:28 -0400 |
commit | 0ff7ea5d3c6d126ba9fd05ea1845d49e8c0b4fd9 (patch) | |
tree | 287b54eb1ffc571272466a8da5f214ba2409edbb | |
parent | e26d5fcd94d11c3f367ab5fbe246c0288cc9eb44 (diff) | |
download | postgresql-0ff7ea5d3c6d126ba9fd05ea1845d49e8c0b4fd9.tar.gz postgresql-0ff7ea5d3c6d126ba9fd05ea1845d49e8c0b4fd9.zip |
Some minor wordsmithing for the cascading replication documentation.
Per report from Thom Brown.
-rw-r--r-- | doc/src/sgml/high-availability.sgml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml index 8bcdc07a763..86c2729cfd3 100644 --- a/doc/src/sgml/high-availability.sgml +++ b/doc/src/sgml/high-availability.sgml @@ -924,16 +924,17 @@ primary_conninfo = 'host=192.168.1.50 port=5432 user=foo password=foopass' Promoting a cascading standby terminates the immediate downstream replication connections which it serves. This is because the timeline becomes different between standbys, and they can no longer continue replication. The - effected standby(s) may reconnect to reestablish streaming replication. + affected standby(s) may reconnect to reestablish streaming replication. </para> <para> To use cascading replication, set up the cascading standby so that it can - accept replication connections, i.e., set <varname>max_wal_senders</>, - <varname>hot_standby</> and authentication option (see - <xref linkend="streaming-replication"> and <xref linkend="hot-standby">). - Also set <varname>primary_conninfo</> in the downstream standby to point - to the cascading standby. + accept replication connections (that is, set + <xref linkend="guc-max-wal-senders"> and <xref linkend="guc-hot-standby">, + and configure + <link linkend="auth-pg-hba-conf">host-based authentication</link>). + You will also need to set <varname>primary_conninfo</> in the downstream + standby to point to the cascading standby. </para> </sect2> |