PostgreSQL10.6主从复制搭建

戏子无情 提交于 2020-01-17 11:16:37

1、环境

操作系统版本:CentOS Linux release 8.0.1905 (Core)

PostgreSQL版本:10.6
主机:

    test1 192.168.1.11
    test2 192.168.1.12
    test3 192.168.1.13

2、在3台机器安装并初始化PostgreSQL

[root@test1 ~]# yum install postgresql-server -y
[root@test1 ~]# postgresql-setup initdb
WARNING: using obsoleted argument syntax, try --help
WARNING: arguments transformed to: postgresql-setup --initdb --unit postgresql
 * Initializing database in '/var/lib/pgsql/data'
 * Initialized, logs are in /var/lib/pgsql/initdb_postgresql.log

3、主库配置
编辑主库配置文件

[root@test1 ~]# vim /var/lib/pgsql/data/postgresql.conf
listen_addresses = '192.168.1.11'
wal_log_hints = on
archive_mode = on
archive_command = 'cp %p /var/lib/pgsql/pg_archive/%f' 

配置认证文件

[root@test1 ~]# vim /var/lib/pgsql/data/pg_hba.conf
#追加三行
host    replication     replica         192.168.1.11/32         md5
host    replication     replica         192.168.1.12/32         md5
host    replication     replica         192.168.1.13/32         md5

创建pg_archive目录

[root@test1 ~]# mkdir -p /var/lib/pgsql/pg_archive
[root@test1 ~]# chown postgres:postgres /var/lib/pgsql/pg_archive

配置recovery.conf

[root@test1 ~]# vim /var/lib/pgsql/data/recovery.bak
standby_mode = on
primary_conninfo = 'host=192.168.1.11 port=5432 user=replica password=replica'
recovery_target_timeline = 'latest'
[root@test1 ~]# chown postgres:postgres /var/lib/pgsql/data/recovery.bak

新建pgpass文件

[postgres@test1 ~]$ vim ~/.pgpass
192.168.1.11:5432:replication:replica:replica
192.168.1.12:5432:replication:replica:replica
192.168.1.13:5432:replication:replica:replica
[root@test1 ~]# chown 600 /var/lib/pgsql/.pgpass

启动数据库,关闭服务

[root@test1 ~]# systemctl start postgresql
[root@test1 ~]# systemctl stop firewalld.service 

创建同步用户

[root@test3 ~]# su - postgres
[postgres@test3 ~]$ psql 
psql (10.6)
Type "help" for help.

postgres=# create role replica login replication encrypted password 'replica';
CREATE ROLE
postgres=# \q
[postgres@test1 ~]$ 

4、配置两台从库
从主库复制备份过来

[root@test2 ~]# rm -rf /var/lib/pgsql/data/*
[root@test2 ~]# pg_basebackup -h 192.168.1.11 -p 5432 -U replica -F p -P -D /var/lib/pgsql/data/
Password:  replica
22797/22797 kB (100%), 1/1 tablespace
[root@test2 ~]# chown postgres:postgres -R /var/lib/pgsql/data

重命名recovery配置文件

[root@test2 ~]# mv /var/lib/pgsql/data/recovery.bak /var/lib/pgsql/data/recovery.conf

新建pgpass文件

[root@test2 ~]# su - postgres
[postgres@test2 ~]$ vim ~/.pgpass
192.168.1.11:5432:replication:replica:replica
192.168.1.12:5432:replication:replica:replica
192.168.1.13:5432:replication:replica:replica
[root@test2 ~]# chown 600 /var/lib/pgsql/.pgpass

创建pg_archive目录

[root@test2 ~]# mkdir -p /var/lib/pgsql/pg_archive
[root@test2 ~]# chown postgres:postgres /var/lib/pgsql/pg_archive

修改监听ip地址,并启动服务

[root@test2 ~]# vim /var/lib/pgsql/data/postgresql.conf
listen_addresses = '192.168.1.12'
[root@test2 ~]# systemctl start postgresql
[root@test2 ~]# systemctl stop firewalld.service

在test3重复做一次
5、测试主从同步状态
在主库查看同步节点

[postgres@test1 ~]$ psql 
psql (10.6)
Type "help" for help.
postgres=# select * from pg_stat_replication;

PostgreSQL10.6主从复制搭建

创建测试库,然后检查两个从库是否同步
在主库操作

postgres=# CREATE DATABASE test_db;
CREATE DATABASE

查看从库
test2同步了
PostgreSQL10.6主从复制搭建
test3同步了
PostgreSQL10.6主从复制搭建

搭建完成

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!