m6米乐安卓版下载-米乐app官网下载

基于pgpool搭建postgresql11的集群 -m6米乐安卓版下载

2020-04-20
3590






刘航:国信司南地理信息技术有限公司部门gis主管







基于pgpool-ii4.1.0搭建postgresql11集群

pgpool介绍
环境准备
搭建配置
   服务器配置
   pgpool安装
   postgresql数据库配置
   pgpool配置
   相关脚本
启动
停止
测试
负载均衡测试
自动故障转移测试
写在最后

该篇文章主要是介绍基于pgpool4.1以及postgresql的流复制实现postgresql的读写分离以及高可用,配置参考pgpool-ii官方文档。使用版本为pgpool4.1、postgresql11.6。

pgpool介绍

pgpool相关介绍不在该文章中,需要者可以参考我的另一篇文章。传送门:pgpool介绍


环境准备

本次使用三台centos7.3的服务器来搭建集群,首先在三台服务器上部署postgresql11.6版本的数据库,部署教程大家可以网上自行查找。具体规划如下:

架构图参考m6米乐安卓版下载官网:



搭建配置

服务器配置

故障转移、在线恢复时需要ssh到其它服务器执行命令,故需要配置服务器之间无密码ssh登录(如服务器之间已经配置ssh可以跳过该节,但是需要修改failover.sh等脚本)

[all servers]# cd ~/.ssh
[all servers]# ssh-keygen -t rsa -f id_rsa_pgpool
[all servers]# ssh-copy-id -i id_rsa_pgpool.pub postgres@server1
[all servers]# ssh-copy-id -i id_rsa_pgpool.pub postgres@server2
[all servers]# ssh-copy-id -i id_rsa_pgpool.pub postgres@server3
[all servers]# su postgres
[all servers]$ cd ~/.ssh
[all servers]$ ssh-keygen -t rsa -f id_rsa_pgpool
[all servers]$ ssh-copy-id -i id_rsa_pgpool.pub postgres@server1
[all servers]$ ssh-copy-id -i id_rsa_pgpool.pub postgres@server2
[all servers]$ ssh-copy-id -i id_rsa_pgpool.pub postgres@server3

pgpool安装

pgpool安装不在该文章中介绍,需要者可以参考我另一篇文章。传送门:pgpool安装。


postgresql数据库配

1.wal归档

需要wal归档的可自行配置,该示例暂时未使用wal归档

[all servers]# su - postgres
[all servers]$ mkdir var/lib/pgsql/archivedir
## postgres.conf 配置
archive_mode = on
archive_command = 'cp "%p" "/var/lib/pgsql/archivedir/%f"'

这儿有一个归档的脚本,使用该脚本可以自行修改保留多少天归档 pg_archive.sh


2.postgres.conf配置

该配置仅在主节点配置,从节点使用pgpool的在线恢复功能配置

listen_addresses = '*' 
port = 5432
max_wal_senders = 10
max_replication_slots = 10
wal_level = replica
hot_standby = on
wal_log_hints = on


3.数据库用户以及密码配置

[server1]# psql -u postgres -p 5432
postgres=# create role pgpool with login password 'pgpool';
postgres=# create role repl with replication login password 'repl';
## 用于show pool_nodes 展示 "replication_state" and "replication_sync_state"
postgres=# grant pg_monitor to pgpool;


4.pg_hba.con配置

添加用户验证配置,将repl复制用户添加到pg_hba中。此文档中所有密码使用md5验证。

host    all             all             0.0.0.0/0               md5
host replication repl 0.0.0.0/0 md5


5.配置.pgpass文件用于无密码操作

由于在故障转移、在线恢复时使用脚本进行操作,脚本中使用pg_basebakup、pg_rewind等命令,所以需要配置无密码操作。

在postgres用户的home目录下创建.pgpass文件,并且文件权限为600。

[all servers]# su - postgres
[all servers]$ vi ~/.pgpass
## 格式为:hostname:port:database:username:password
server1:5432:replication:repl:
server2:5432:replication:repl:
server3:5432:replication:repl:
server1:5432:postgres:postgres:
server2:5432:postgres:postgres:
server3:5432:postgres:postgres:
[all servers]$ chmod 600 ~/.pgpass


pgpool配置

1)#cp-p/usr/local/pgpool/etc/pgpool.conf.sample-stream usr/local/pgpool/etc/pgpool.conf


2)配置postgresql数据库信息

# - backend connection settings -


# 有几台postgresql数据库,配置几个后端信息,使用后缀名0、1、2……


backend_hostname0 = 'server1' # host name or ip address to connect to for backend 0
backend_port0 = 5432 # port number for backend 0
backend_weight0 = 1 # weight for backend 0 (only in load balancing mode)
backend_data_directory0 = '/data/pgsql/sport/' # data directory for backend 0
# controls various backend behavior
# allow_to_failover or disallow_to_failover
backend_flag0 = 'allow_to_failover'


backend_hostname1 = 'server2'
backend_port1 = 5432
backend_weight1 = 1
backend_data_directory1 = '/var/lib/pgsql/11/data'
backend_flag1 = 'allow_to_failover'


backend_hostname2 = 'server3'
backend_port2 = 5432
backend_weight2 = 1
backend_data_directory2 = '/var/lib/pgsql/11/data'
backend_flag2 = 'allow_to_failover'


3)基础配置

listen_addresses = '*'  
pid_file_name = '/var/run/pgpool/pgpool.pid'
# pid file name
# can be specified as relative to the"
# location of pgpool.conf file or
# as an absolute path
# (change requires restart)
logdir = '/var/run/pgpool'
# directory of pgpool status file
# (change requires restart)

创建pgpool运行需要目录mkdir -p var/run/pgpool


4)配置复制延迟检查

sr_check_user = 'pgpool'
## 自从4.0版本后,如果密码设置为的话,pgpool会首先从`pool_passwd`文件中获取密码,然后在使用空密码
sr_check_password = 'pgpool'


5)配置健康检查

# health check period
# disabled (0) by default
health_check_period = 5
# health check timeout
# 0 means no timeout
health_check_timeout = 30
health_check_user = 'pgpool'
health_check_password = 'pgpool'
health_check_max_retries = 3


6)配置故障转移

failover_command = '/usr/locla/pgpool/etc/failover.sh %d %h %p %d %m %h %m %p %r %r %n %s'
follow_master_command = '/usr/locla/pgpool/etc/follow_master.sh %d %h %p %d %m %h %m %p %r %r'

关于脚本会在后面给出下载地址以及脚本使用说明

# 给脚本设置执行权限,注意:该脚本需要在三台pgpool服务器中都需要创建
chmod x usr/local/pgpoll/etc/{failover.sh,follow_master.sh}


7)配置在线恢复

为了使用pgpool-ii执行在线恢复,我们需要配置postgresql用户名和在线恢复命令recovery_1st_stage。由于执行在线恢复需要postgresql中的超级用户特权,因此我们在recovery_user中指定postgres用户。然后,我们在postgresql主服务器(server1)的数据库目录中创建recovery_1st_stage和pgpool_remote_start,并添加执行权限。

recovery_user = 'postgres'   
# online recovery user
recovery_password = 'postgres'
# online recovery password


recovery_1st_stage_command = 'recovery_1st_stage'
## 该脚本只需要在数据库主节点创建,后续使用在线恢复时会复制过去
[server1]# su - postgres
[server1]$ vi data/pgsql/sport/recovery_1st_stage
[server1]$ vi data/pgsql/sport/pgpool_remote_start
[server1]$chmod x/data/pgsql/sport/{recovery_1st_stage,pgpool_remote_start}

数据库创建扩展,该扩展是为了能够执行在线恢复(如果在安装时已经创建该扩展则可以跳过该步骤)

[server1]# su - postgres
[server1]$ psql template1 -c "create extension pgpool_recovery"


8)配置客户端身份验证

## pgpool.conf中
enable_pool_hba = on

身份验证文件为/usr/local/pgpool/etc/pool_hba.conf,配置方式与postgresql基本一样。(scram-sha-256方式可参考pgpoolm6米乐安卓版下载官网)

host    all         pgpool           0.0.0.0/0          md5
host    all         postgres         0.0.0.0/0          md5
cd usr/local/pgpool/etc
../bin/pg_md5 -p -m -u postgres pool_passwd
../bin/pg_md5 -p -m -u pgpool pool_passwd
cat etc/pgpool-ii/pool_passwd
# pgpool:aesheq2zmzjynddmwk5skp/rw==
# postgres:aeshs/pwl5rtxy2iwuzrohfqg==


9)看门狗配置

use_watchdog = on
delegate_ip = '192.168.111.6' ##vip配置
## 网卡名字需要正确配置
if_up_cmd = '/usr/bin/sudo sbin/ip addr add $_ip_$/24 dev enp0s8 label enp0s8:0'
if_down_cmd = '/usr/bin/sudo sbin/ip addr del $_ip_$/24 dev enp0s8'
arping_cmd = '/usr/bin/sudo usr/sbin/arping -u $_ip_$ -w 1 -i enp0s8'


配置其它pgpool信息,注意:该配置在三台服务器不一样,只需要配置另外几台即可
[server1配置如下]
# - other pgpool connection settings -


other_pgpool_hostname0 = 'server2'
other_pgpool_port0 = 9999
other_wd_port0 = 9000


other_pgpool_hostname1 = 'server3'
other_pgpool_port1 = 9999
other_wd_port1 = 9000


heartbeat_destination0 = 'server2'
heartbeat_destination_port0 = 9694
heartbeat_device0 = ''


heartbeat_destination1 = 'server3'
heartbeat_destination_port1 = 9694
heartbeat_device1 = ''
[server2配置如下]
# - other pgpool connection settings -


other_pgpool_hostname0 = 'server1'
other_pgpool_port0 = 9999
other_wd_port0 = 9000


other_pgpool_hostname1 = 'server3'
other_pgpool_port1 = 9999
other_wd_port1 = 9000


heartbeat_destination0 = 'server1'
heartbeat_destination_port0 = 9694
heartbeat_device0 = ''


heartbeat_destination1 = 'server3'
heartbeat_destination_port1 = 9694
heartbeat_device1 = ''
[server3配置如下]
# - other pgpool connection settings -
other_pgpool_hostname0 = 'server1'
other_pgpool_port0 = 9999
other_wd_port0 = 9000


other_pgpool_hostname1 = 'server2'
other_pgpool_port1 = 9999
other_wd_port1 = 9000


heartbeat_destination0 = 'server1'
heartbeat_destination_port0 = 9694
heartbeat_device0 = ''


heartbeat_destination1 = 'server2'
heartbeat_destination_port1 = 9694
heartbeat_device1 = ''


10)pcp命令配置

cd /usr/local/pgpool/bin
echo 'pgpool:'`pg_md5 pgpool` >> /usr/local/pgpool/etc/pcp.conf

以上pgpool相关配置都配置完成,最终会生成pgpool.conf、pool_hba.conf、pool_passwd、pcp.conf,可以配置完一台后,在其它服务器copy配置文件即可。注意:pgpool.conf中看门狗配置需要在其它服务器修改一下。


相关脚本

此处一共需要四个脚本分别为:

1.failover.sh目录为: /usr/local/pgpool/etc/下

2.follow_master.sh目录为: /usr/local/pgpool/etc/下

3.recovery_1st_stage目录为:postgresql数据库数据目录下

4.pgpool_remote_start目录为:postgresql数据库数据目录下

脚本地址:https://github.com/mrsmallliu/pgpool

脚本参考于m6米乐安卓版下载官网,但是稍有改动:

1.创建与删除复制槽时,如果使用ip地址,则会报错,因为名字不允许有.,修改:${failed_node_host//./_}

2.follow_master.sh脚本中一处bug

# drop replication slot
ssh -t -o stricthostkeychecking=no -o userknownhostsfile=/dev/null postgres@${new_master_node_host} -i ~/.ssh/id_rsa_pgpool "
${pghome}/bin/psql -p ${new_master_node_port} -c \"select pg_drop_replication_slot('${failed_node_host//./_}')\"
"

注意:

1.注意所有脚本中 pghome变量为postgresql安装路径

2.注意所有脚本中archivedir,如果未使用,需要将其注释,并且修改相应使用地方

3.注意所有脚本中pgpool_path变量为pgpool的bin路径

4.注意recovery_1st_stage脚本中primary_node_host变量,该变量取hostname值,可以先在自己服务器测试一下该命令是否符合预期。不符合者使用hostnamectl set-hostname server1


启动

1.后台运行

/usr/local/pgpool/bin/pgpool

2.debug运行

/usr/local/pgpool/bin/pgpool -n -d

/usr/local/pgpool/bin/pgpool -n

3.standby 数据库启动

-n 表示在pgpool.conf配置文件中postgresql配置的后面的序号
/usr/local/pgpool/bin/pcp_recovery_node -h 192.168.111.6 -p 9898 -u pgpool -n 1
password:
pcp_recovery_node -- command successful


/usr/local/pgpool/bin/pcp_recovery_node -h 192.168.111.6 -p 9898 -u pgpool -n 2
password:
pcp_recovery_node -- command successful


停止

/usr/local/pgpool/bin/pgpool -m fast stop


测试

1.使用客户端连接(navicat、pgadmin等)

psql -h 192.168.111.6 -p 9999 -u passwd:postgres

2.执行show pool_nodes


负载均衡测试

可以配置postgresql日志打印sql语句,使用vip地址连接上后测试输出即可看到查询会负载到三台服务器(默认根据连接使用负载均衡,需要几次新建查询来测试)


自动故障转移测试

可以使用postgresql命令停掉主节点数据库来测试故障转移


写在最后

1.以上配置经过我们部署测试是可以正常运行的,但是是后续整理才写的该篇文章,可能存在遗漏不足的地方。小伙伴在配置过程中有疑惑、配置后未能正常启动、有文档意见都可以与我联系。随时欢迎提给我,然后我进行修改文档,以帮助更多人。

2.后面抽时间整理一个pgpool的部署流程图,方便大家理解部署流程。

3.关于配置文件的具体讲解以及优化会在后面再写相关文档,欢迎持续关注。



i love pg

关于m6米乐安卓版下载

中国开源软件推进联盟postgresql分会(简称:pg分会)于2017年成立,由国内多家pg生态企业所共同发起,业务上接受工信部产业发展研究院指导。pg分会致力于构建pg产业生态,推动pg产学研用发展,是国内一家pg行业协会组织。



欢迎投稿

做你的舞台,show出自己的才华 。

投稿邮箱:partner@postgresqlchina.com

                               

                                 ——愿能安放你不羁的灵魂

技术文章精彩回顾





















pg活动精彩回顾
























pg培训认证精彩回顾












最后修改时间:2020-04-21 09:17:54
文章转载自开源软件联盟postgresql分会,如果涉嫌侵权,请发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论

关注
网站地图