7. Streaming-Replikation auf alle Knoten überprüfen
Schritt 1
Starten Sie auf node0 den PostgreSQL-Dienst neu.
Schritt 2
Synchronisieren Sie auf node1 node1 anhand des Skripts "start_replication" mit node0, und starten Sie dann PostgreSQL auf node1 neu. Die IP-Adresse von 10.91.9.200 ist für node0.
sudo su postgres
/db/bin/start_replication.sh 10.91.9.200
exit
sudo systemctl start postgresql-10.x
Schritt 3
Synchronisieren Sie auf node2 node2 anhand des Skripts "start_replication" mit node1, und starten Sie dann PostgreSQL auf node2 neu. Die IP-Adresse von 10.91.9.24 ist für node1.
sudo su postgres
/db/bin/start_replication.sh 10.91.9.24
exit
sudo systemctl start postgresql-10.x
Schritt 4
Prüfen Sie den Replikationsstatus.
Überprüfen Sie die Ergebnisse des PostgreSQL-Prozessstatus, um sich zu vergewissern, dass die Replikation aktiv ist.
auf node0:
[ec2-user@ip-10-91-9-200 ~]$ ps -ef|grep postgres
postgres 837 1 0 14:39 ? 00:00:00 /usr/pgsql-10.x/bin/postgres -D /db/postgres
postgres 863 837 0 14:39 ? 00:00:00 postgres: logger process
postgres 878 837 0 14:39 ? 00:00:00 postgres: checkpointer process
postgres 879 837 0 14:39 ? 00:00:00 postgres: writer process
postgres 880 837 0 14:39 ? 00:00:00 postgres: wal writer process
postgres 881 837 0 14:39 ? 00:00:00 postgres: autovacuum launcher process
postgres 882 837 0 14:39 ? 00:00:00 postgres: archiver process
postgres 883 837 0 14:39 ? 00:00:00 postgres: stats collector process
postgres 910 837 0 14:39 ? 00:00:00 postgres: wal sender process replicator 10.91.9.24(48264) streaming 1A/BC0039A0
auf node1:
[ec2-user@ip-10-91-9-24 ~]$ ps -ef|grep postgres
postgres 834 1 0 14:39 ? 00:00:00 /usr/pgsql-10.x/bin/postgres -D /db/postgres
postgres 861 834 0 14:39 ? 00:00:00 postgres: logger process
postgres 863 834 0 14:39 ? 00:00:00 postgres: startup process recovering 000000170000001A000000BC
postgres 897 834 0 14:39 ? 00:00:00 postgres: checkpointer process
postgres 898 834 0 14:39 ? 00:00:00 postgres: writer process
postgres 899 834 0 14:39 ? 00:00:00 postgres: stats collector process
postgres 1236 834 0 14:39 ? 00:00:00 postgres: wal sender process replicator 10.91.9.41(48620) streaming 1A/BC0039A0
postgres 1279 834 0 14:39 ? 00:00:05 postgres: wal receiver
auf node2:
[ec2-user@ip-10-91-9-41 ~]$ ps -ef|grep postgres
postgres 837 1 0 14:39 ? 00:00:00 /usr/pgsql-10.x/bin/postgres -D /db/postgres
postgres 859 837 0 14:39 ? 00:00:00 postgres: logger process
postgres 860 837 0 14:39 ? 00:00:00 postgres: startup process recovering 000000170000001A000000BC
postgres 887 837 0 14:39 ? 00:00:00 postgres: checkpointer process
postgres 888 837 0 14:39 ? 00:00:00 postgres: writer process
postgres 889 837 0 14:39 ? 00:00:00 postgres: stats collector process
postgres 890 837 0 14:39 ? 00:00:07 postgres: wal receiver
Beachten Sie in den oben genannten Erfassungen des Prozessstatus Folgendes, um zu überprüfen, ob die Replikation ausgeführt wird:
node0 hat einen Senderprozess, und das Replikationsziel ist 10.91.9.24 (node1).
node1 hat einen Senderprozess und einen Empfängerprozess.
node2 hat nur einen Empfängerprozess.
Alle drei Knoten werden im Stream 1A/BC0039A0 synchronisiert.
War dies hilfreich?