From: Heikki Linnakangas Date: Wed, 31 Mar 2010 20:41:50 +0000 (+0000) Subject: Fix typos, spotted by Thom Brown. X-Git-Tag: REL9_0_ALPHA5~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f185fc3c5e119f03e8057e8f741df4d4f6c50713;p=postgresql Fix typos, spotted by Thom Brown. --- diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml index 8b923a84fc..2e8a7a95aa 100644 --- a/doc/src/sgml/high-availability.sgml +++ b/doc/src/sgml/high-availability.sgml @@ -1,4 +1,4 @@ - + High Availability, Load Balancing, and Replication @@ -583,7 +583,7 @@ protocol to make nodes agree on a serializable transactional order. Standby Server Operation - In standby mode, the server continously applies WAL received from the + In standby mode, the server continuously applies WAL received from the master server. The standby server can read WAL from a WAL archive (see restore_command) or directly from the master over a TCP connection (streaming replication). The standby server will @@ -625,7 +625,7 @@ protocol to make nodes agree on a serializable transactional order. Set up continuous archiving on the primary to an archive directory accessible from the standby, as described in . The archive location should be - accessible from the standby even when the master is down, ie. it should + accessible from the standby even when the master is down, i.e. it should reside on the standby server itself or another trusted server, not on the master server. @@ -920,7 +920,7 @@ primary_conninfo = 'host=192.168.1.50 port=5432 user=foo password=foopass' Alternative method for log shipping - An alternative to the built-in standby mode desribed in the previous + An alternative to the built-in standby mode described in the previous sections is to use a restore_command that polls the archive location. This was the only option available in versions 8.4 and below. In this setup, set standby_mode off, because you are implementing