Postgres主从(1)Repmgr安装和配置

2024-02-25 04:58

本文主要是介绍Postgres主从(1)Repmgr安装和配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

安装

有网安装

安装2ndquadrant的RPM仓库

yum install https://rpm.2ndquadrant.com/site/content/2ndquadrant-repo-10-1-1.el7.noarch.rpm

安装对应PG版本的repmgr,如PostgreSQL10对应repmgr10

yum install repmgr10

无网安装

在有网的服务器上下载RPM包

安装2ndquadrant的RPM仓库

yum install https://rpm.2ndquadrant.com/site/content/2ndquadrant-repo-10-1-1.el7.noarch.rpm

下载RPM包

yum install --downloadonly --downloaddir=/tmp repmgr10

将RPM包拷贝到要安装的服务器上安装

rpm -i repmgr10-*

默认位置

配置文件:/etc/repmgr/10/repmgr.conf
repmgr:位于PostgreSQL的bin下,例如/usr/pgsql-10/bin(必须用postgres用户执行,无法在root下执行)
repmgrd:位于PostgreSQL的bin下,例如/usr/pgsql-10/bin

SSH互信

需要对repmgr集群中的每个节点间配置SSH互信

对于192.168.220.135

su postgres
# 生成秘钥到用户主目录下的.ssh文件夹下
ssh-keygen -t rsa
# 将秘钥拷贝到远程机器
ssh-copy-id -i .ssh/id_rsa.pub postgres@192.168.220.136
# # 验证是否授权完成
ssh 192.168.220.136 date

对于192.168.220.136

su postgres
ssh-keygen -t rsa
ssh-copy-id -i .ssh/id_rsa.pub postgres@192.168.220.135
# 验证能无密码SSH
ssh 192.168.220.135 date

如果SSH仍旧需要密码
可以用ssh -vvv显示Debug信息

ssh -vvv 192.168.220.136 date

常见问题原因

  1. .ssh/authorized_keys权限必须是600(只允许所属用户读写)且属于postgres用户
  2. 开启了SELinux,.ssh目录及其下的文件可能缺少标签(通过ls -laZ查看),/var/log/audit/audit.log将出现如下错误
type=AVC msg=audit(1529070141.437:146): avc:  denied  { read } for  pid=1367 comm="sshd" name="authorized_keys" dev="dm-0" ino=16927777 scontext=system_u:system_r:sshd_t:s0-s0:c0.c1023 tcontext=unconfined_u:object_r:home_root_t:s0 tclass=file

通过对 .ssh文件夹恢复SELinux文件属性解决问题

restorecon -r -vv /home/postgres/.ssh

配置

PostgreSQL配置(主从)

在postgresql.conf文件最后添加

include 'postgresql-replication.conf'

使用postgres用户创建postgresql-replication.conf,以防止postgres缺少权限

su postgres
cd pgdata目录
touch postgresql-replication.conf
vi postgresql-replication.conf

postgresql-replication.conf中设置以下内容

# 打开standby的连接,max_wal_senders至少要大于2,repmgr使用的pg_basebackup需要两个wal sender
max_wal_senders = 10# 启用wal日志记录
# PostgreSQL 9.5及以前可配置为:'hot_standby' 或'logical'
# PostgreSQL 9.6及以后可配置为:'replica'或 'logical'
wal_level = 'replica'# 在standby节点配置为只读,当本节点为primary时。本配置无效,但当primary变为standby时将生效。因此建议primary和standby都设置为on
hot_standby = on# 启用WAL归档
archive_mode = on# 配置将归档文件保存到安全位置的命令,根据需要修改
archive_command = '/bin/true'# If you have configured "pg_basebackup_options"
# in "repmgr.conf" to include the setting "--xlog-method=fetch" (from
# PostgreSQL 10 "--wal-method=fetch"), *and* you have not set
# "restore_command" in "repmgr.conf"to fetch WAL files from another
# source such as Barman, you'll need to set "wal_keep_segments" to a
# high enough value to ensure that all WAL files generated while
# the standby is being cloned are retained until the standby starts up.
#
# wal_keep_segments = 5000

创建数据库用户(主从)

注:shell命令,非SQL

su postgres
createuser -s repmgr 
createdb repmgr -O repmgr
#进入psql
psql
#在psql中设置repmgr依次默认查找repmgr、同用户名、public三个schema
ALTER USER repmgr SET search_path TO repmgr, "$user", public;
#退出psql
\q

pg_hba,conf验证配置(主从)

添加复制用户的权限
假定主从为:192.168.220.135、192.168.220.136

注意:hba文档按配置的先后顺序进行匹配

# replication privilege.
local   replication     repmgr                                  trust
local   repmgr          repmgr                                  trust
host    replication     repmgr          127.0.0.1/32            trust
host    replication     repmgr          192.168.220.135/32      trust
host    replication     repmgr          192.168.220.136/32      trust
host    repmgr          repmgr          127.0.0.1/32            trust
host    repmgr          repmgr          192.168.220.135/32      trust
host    repmgr          repmgr          192.168.220.136/32      trust

检测standby

重启两台服务器PostgreSQL,使上一步的hba配置生效

systemctl restart postgresql-10

在135上测试能否访问136

#使用postgres用户
su postgres
#测试能否使用repmgr访问(无需密码)
psql 'host=192.168.220.136 user=repmgr dbname=repmgr connect_timeout=2'
#退出psql
\q

在136上测试能否访问135

#使用postgres用户
su postgres
#测试
psql 'host=192.168.220.135 user=repmgr dbname=repmgr connect_timeout=2'
#退出psql
\q

主服务器配置

主repmgr配置文件

repmgr10的配置文件默认位于/etc/repmgr/10/repmgr.conf

添加以下内容

#大于0的唯一Integer值
node_id=135
#唯一值,用于标识本服务器
node_name=135pg
#连接到本机的信息
conninfo='host=192.168.220.135 user=repmgr dbname=repmgr connect_timeout=2'
#postgresql的data路径
data_directory='/data/app/pgdata'
注册Primary

注册Primary

su postgres
repmgr -f /etc/repmgr/10/repmgr.conf primary register

查询状态

repmgr -f /etc/repmgr/10/repmgr.conf cluster show

从服务器配置

从repmgr配置文件

repmgr10的配置文件默认位于/etc/repmgr/10/repmgr.conf

添加以下内容

#大于0的唯一Integer值
node_id=136
#唯一值,用于标识本服务器
node_name=136pg
#连接到本机的信息
conninfo='host=192.168.220.136 user=repmgr dbname=repmgr connect_timeout=2'
#postgresql的data路径
data_directory='/data/app/pgdata'
Clone从

目的:将主的数据复制到从

数据库实例必须先关闭

systemctl stop postgresql-10

删除数据库实例data下所有数据

注意不要删除/data/app/pgdata文件夹,否则重新创建该文件夹并给postgres用户授权

rm -rf /data/app/pgdata/*

测试能否使用主服务器进行clone

su postgresrepmgr -h 192.168.220.135 -U repmgr -d repmgr -f /etc/repmgr/10/repmgr.conf standby clone --dry-run

如果未出现Error,执行Clone

repmgr -h 192.168.220.135 -U repmgr -d repmgr -f /etc/repmgr/10/repmgr.conf standby clone --fast-checkpoint

注:pgdat下所有文件如postgresql.conf, postgresql.auto.conf, pg_hba.conf和pg_ident.conf都将被拷贝,可能需要手动修改其中的配置

修改完PostgreSQL的配置文件后,启动服务

pg_ctl -D /data/app/pgdata start
检查复制状态

主服务器

SELECT * FROM pg_stat_replication;

从服务器

SELECT * FROM pg_stat_wal_receiver
注册从
repmgr -f /etc/repmgr/10/repmgr.conf  standby register

在从上查询状态

repmgr -f /etc/repmgr/10/repmgr.conf cluster show

应看到类似如下信息

 ID | Name  | Role    | Status    | Upstream | Location | Connection string                                               
----+-------+---------+-----------+----------+----------+------------------------------------------------------------------135 | 135pg | primary | * running |          | default  | host=192.168.220.135 user=repmgr dbname=repmgr connect_timeout=2136 | 136pg | standby |   running | 135pg    | default  | host=192.168.220.136 user=repmgr dbname=repmgr connect_timeout=2

以上则完成了一个集群的配置,为了能够在主故障时自动切换,需要使用repmgrd

Repmgrd

postgresql配置

postgresql.conf中设置加载repmgrd库

shared_preload_libraries ='repmgr'

重启数据库使配置生效

systemctl restart postgresql-10

repmgrd配置

配置/etc/repmgr/10/repmgr.conf

# 设置为自动恢复模式
failover=automatic
# 尝试连接到主的次数
reconnect_attempts=6
# 每次尝试连接到主的时间间隔(秒)
reconnect_interval=5
# 当本机要成为主时,执行的提升命令
promote_command='repmgr standby promote -f /etc/repmgr/10/repmgr.conf --log-to-file'
# 当出现新主时,执行的跟随命令
follow_command='repmgr standby follow -f /etc/repmgr/10/repmgr.conf --log-to-file --upstream-node-id=%n'

日志轮转配置

配置/etc/repmgr/10/repmgr.conf设置日志路径

log_file='/var/log/repmgr/repmgr.log'	

修改/etc/logrotate.conf
添加以下内容

/var/log/repmgr/repmgr.log {missingokcompressrotate 30dailydateextcreate 0600 postgres postgres
}

启动repmgrd

su postgres
repmgrd -f /etc/repmgr/10/repmgr.conf --pid-file /tmp/repmgrd.pid --daemonize

停止repmgrd

kill `cat /tmp/repmgrd.pid`

这篇关于Postgres主从(1)Repmgr安装和配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/744453

相关文章

Zookeeper安装和配置说明

一、Zookeeper的搭建方式 Zookeeper安装方式有三种,单机模式和集群模式以及伪集群模式。 ■ 单机模式:Zookeeper只运行在一台服务器上,适合测试环境; ■ 伪集群模式:就是在一台物理机上运行多个Zookeeper 实例; ■ 集群模式:Zookeeper运行于一个集群上,适合生产环境,这个计算机集群被称为一个“集合体”(ensemble) Zookeeper通过复制来实现

CentOS7安装配置mysql5.7 tar免安装版

一、CentOS7.4系统自带mariadb # 查看系统自带的Mariadb[root@localhost~]# rpm -qa|grep mariadbmariadb-libs-5.5.44-2.el7.centos.x86_64# 卸载系统自带的Mariadb[root@localhost ~]# rpm -e --nodeps mariadb-libs-5.5.44-2.el7

Centos7安装Mongodb4

1、下载源码包 curl -O https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-4.2.1.tgz 2、解压 放到 /usr/local/ 目录下 tar -zxvf mongodb-linux-x86_64-rhel70-4.2.1.tgzmv mongodb-linux-x86_64-rhel70-4.2.1/

hadoop开启回收站配置

开启回收站功能,可以将删除的文件在不超时的情况下,恢复原数据,起到防止误删除、备份等作用。 开启回收站功能参数说明 (1)默认值fs.trash.interval = 0,0表示禁用回收站;其他值表示设置文件的存活时间。 (2)默认值fs.trash.checkpoint.interval = 0,检查回收站的间隔时间。如果该值为0,则该值设置和fs.trash.interval的参数值相等。

NameNode内存生产配置

Hadoop2.x 系列,配置 NameNode 内存 NameNode 内存默认 2000m ,如果服务器内存 4G , NameNode 内存可以配置 3g 。在 hadoop-env.sh 文件中配置如下。 HADOOP_NAMENODE_OPTS=-Xmx3072m Hadoop3.x 系列,配置 Nam

wolfSSL参数设置或配置项解释

1. wolfCrypt Only 解释:wolfCrypt是一个开源的、轻量级的、可移植的加密库,支持多种加密算法和协议。选择“wolfCrypt Only”意味着系统或应用将仅使用wolfCrypt库进行加密操作,而不依赖其他加密库。 2. DTLS Support 解释:DTLS(Datagram Transport Layer Security)是一种基于UDP的安全协议,提供类似于

Centos7安装JDK1.8保姆版

工欲善其事,必先利其器。这句话同样适用于学习Java编程。在开始Java的学习旅程之前,我们必须首先配置好适合的开发环境。 通过事先准备好这些工具和配置,我们可以避免在学习过程中遇到因环境问题导致的代码异常或错误。一个稳定、高效的开发环境能够让我们更加专注于代码的学习和编写,提升学习效率,减少不必要的困扰和挫折感。因此,在学习Java之初,投入一些时间和精力来配置好开发环境是非常值得的。这将为我

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

安装nodejs环境

本文介绍了如何通过nvm(NodeVersionManager)安装和管理Node.js及npm的不同版本,包括下载安装脚本、检查版本并安装特定版本的方法。 1、安装nvm curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash 2、查看nvm版本 nvm --version 3、安装

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能