PostgreSQL Replication实验记录
2022/3/22 2:28:33
本文主要是介绍PostgreSQL Replication实验记录,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
PostgreSQL Replication实验记录
此文以PostgreSQL 10版本为例!
如未指定,下述命令在所有节点执行!
系统资源及组件规划
节点名称 | 系统名称 | CPU/内存 | 网卡 | 磁盘 | IP地址 | OS | 节点角色 |
---|---|---|---|---|---|---|---|
PGSQL1 | pgsql1 | 2C/4G | ens33 | 128G | 192.168.0.10 | CentOS7 | Master |
PGSQL2 | pgsql2 | 2C/4G | ens33 | 128G | 192.168.0.20 | CentOS7 | Slave |
二、系统软件安装与设置
1、安装基本软件
yum -y install vim lrzsz bash-completion
2、设置名称解析
echo 192.168.0.10 pgsql1 >> /etc/hosts echo 192.168.0.20 pgsql2 >> /etc/hosts
3、设置NTP
yum -y install chrony
systemctl start chronyd systemctl enable chronyd systemctl status chronyd
chronyc sources
4、设置SELinux、防火墙
systemctl stop firewalld systemctl disable firewalld setenforce 0 sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
三、搭建PostgreSQL高可用集群
1、安装PostgreSQL
配置YUM源:
参考地址:https://www.postgresql.org/download
yum -y install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
安装PostgreSQL:
yum -y install postgresql10-server
配置环境变量:
su - postgres
修改.bash_profile,添加如下内容:
export PATH=$PATH:/usr/pgsql-10/bin
2、配置PostgreSQL主节点
初始化PGSQL1节点:
/usr/pgsql-10/bin/postgresql-10-setup initdb
在PGSQL1节点上配置远程登录和复制权限:
修改/var/lib/pgsql/10/data/postgresql.conf:
listen_addresses = '*'
wal_level = replica
synchronous_commit = on
修改/var/lib/pgsql/10/data/pg_hba.conf,添加如下内容:
# IPv4 local connections: host all all 0.0.0.0/0 md5 # replication privilege. host replication repluser 192.168.0.0/24 md5
启动PostgreSQL,并设置自启动:
systemctl start postgresql-10 systemctl enable postgresql-10 systemctl status postgresql-10
在PGSQL1节点上修改数据库密码:
su - postgres psql ALTER USER postgres WITH ENCRYPTED PASSWORD '111111'; \du \q
在PGSQL1节点上创建复制用户:
su - postgres psql CREATE USER repluser WITH REPLICATION PASSWORD '111111'; \du \q
在PGSQL1节点上创建数据库和表:
su - postgres psql
CREATE DATABASE db;
\c db CREATE TABLE tb ( id int NOT NULL, name varchar(255) NULL, PRIMARY KEY (id) );
在PGSQL1节点上插入数据:
INSERT INTO tb (id,name) VALUES (1,‘MySQL’);
在PGSQL1节点上查看数据:
SELECT * FROM tb; \q
2、配置PostgreSQL从节点
备份PGSQL1节点数据:
su - postgres pg_basebackup -h pgsql1 -U repluser -D /var/lib/pgsql/10/data -P -v
配置PGSQL2节点:
cp /usr/pgsql-10/share/recovery.conf.sample /var/lib/pgsql/10/data/recovery.conf
修改/var/lib/pgsql/10/data/recovery.conf,添加如下内容:
recovery_target_timeline = 'latest'
standby_mode = on primary_conninfo = 'host=192.168.0.10 port=5432 user=repluser password=111111'
启动PostgreSQL,并设置自启动:
systemctl start postgresql-10 systemctl enable postgresql-10 systemctl status postgresql-10
4、验证PostgreSQL Replication
在PGSQL1节点上查看PGSQL2节点状态:
su - postgres psql \c postgres SELECT * FROM pg_stat_replication; \q
在PGSQL2节点上查看数据:
su - postgres psql \c db SELECT * FROM tb; \q
在PGSQL1节点上插入数据:
su - postgres psql \c db INSERT INTO tb (id,name) VALUES (2,'Redis'); SELECT * FROM tb; \q
在PGSQL2节点上查看数据:
su - postgres psql \c db SELECT * FROM tb; \q
这篇关于PostgreSQL Replication实验记录的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享