...
Drawio | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...
The method used for creating the DR cluster (WAL Streaming)
The replication user that is used for streaming connection to the primary cluster. By default, the Postgres user is used. It is recommended to use a different user for establishing this connection. Sample user creation SQL used.
SUPERUSER
role needed here because onlySUPERUSER
can retrieve thepg_read_all_stats
role needed for the user because retrieving streaming sync status between primary database and standby database requirespg_read_all_stats
access. Sample user creation SQL used
Code Block |
---|
create user repuser replication login encrypted password 'xxxxxx'; alter ROLEGRANT pg_read_all_stats TO repuser SUPERUSER; |
The password of the replication user that is used for streaming connection to the primary cluster.
A replication test that can be done to ensure the correct username and password with necessary privileges and the whether the pg_hba.conf updates are correct.
The result of the replication test.
By, default the observer is enabled that will start monitoring the configuration as soon the DR cluster is created.
Click start to start creating the DR cluster using WAL streaming method.
...
Drawio | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...
Drawio | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...
Code Block |
---|
-bash-4.2$ ls -lrt /u01 drwx------ (or drwxr-x---). 5 postgres postgres 4096 Aug 16 16:41 tablespace drwx------ (or drwxr-x---). 20 postgres postgres 4096 Aug 26 12:06 PG5433-12 |
The location of the configuration files (postgresql.conf, pg_hba.conf, and pg_indent.conf). This location can be different from the primary data directory, but the example below has these two in the same directory. Keeping the same as the primary is recommended, but this can also be different in the standby. postgresql.conf, pg_hba.conf, and pg_indent.conf need to be placed in the same folder.
For this example, a Hot standby is created that can be accessible for reporting purposes as the databases in the cluster are in read only mode.
...