PostgreSQL被业界誉为“最先进的开源数据库”,目前阿里云数据库PostgreSQL版具有NoSQL兼容,高效查询,插件化管理,安全稳定的特性。本文档介绍使用阿里云ECS搭建PostgreSQL主从架构的操作步骤。
适用对象
适用于熟悉ECS,熟悉Linux系统,熟悉PostgreSQL的阿里云用户。
基本流程
使用阿里云ECS搭建PostgreSQL主从架构的操作步骤如下:
选购ECS 实例主节点安装配置从节点安装配置检测验证步骤 1:选购ECS实例
搭建主从复制架构,需要选购2台专有网络类型的云服务器ECS实例,建议不分配公网IP,可按需购买弹性公网IP绑定至对应ECS实例,进行配置操作。后续使用您可以根据实际情况考虑配置升级或者架构调优变更。
步骤2:安装PostgreSQL
在阿里云服务器上安装PostgreSQL有2种方式
镜像部署手动部署(源码编译安装/YUM安装)本文档基于yum部署的方式,安装postgresql;您也可以在云市场基础环境中搜索筛选,使用镜像部署,更加快捷方便。
本文环境软件明细:CentOS 7.2 |PostgreSQL (9.5.6)
步骤3:PostgreSQL主节点配置
1、主节点上执行以下命令安装PostgreSQL。
# yum update -y # yum install https://download.postgresql.org/pub/repos/yum/9.5/redhat/rhel-7-x86_64/pgdg-centos95-9.5-2.noarch.rpm -y # yum install postgresql95-server postgresql95-contrib -y # /usr/pgsql-9.5/bin/postgresql95-setup initdb # systemctl enable postgresql-9.5.service # systemctl start postgresql-9.5.service2、主节点上创建进行主从复制的数据库账号,并设置密码及登录和备份权限。
# su - postgres # psql postgres=# CREATE ROLE replica login replication encrypted password 'replica'; CREATE ROLE postgres=# SELECT usename from pg_user ; usename ---------- postgres replica (2 rows) postgres=# SELECT rolname from pg_roles ; rolname ---------- postgres replica (2 rows)3、修改pg_hba.conf,设置replica用户白名单。
# vim /var/lib/pgsql/9.5/data/pg_hba.conf在IPv4 local connections段添加下面两行内容
host all all 192.168.1.0/24 md5 允许VPC网段中md5密码认证连接 host replication replica 192.168.1.0/24 md5 允许用户从replication数据库进行数据同步4、修改postgresql.conf
# vim /var/lib/pgsql/9.5/data/postgresql.conf设置以下参数
wal_level = hot_standby 启用热备模式 synchronous_commit = on 开启同步复制 max_wal_senders = 32 同步最大的进程数量 wal_sender_timeout = 60s 流复制主机发送数据的超时时间 max_connections = 100 最大连接数,从库的max_connections必须要大于主库的5、重启服务
# systemctl restart postgresql-9.5.service步骤4:PostgreSQL从节点配置
1、安装postgres。
# yum update -y # yum install https://download.postgresql.org/pub/repos/yum/9.5/redhat/rhel-7-x86_64/pgdg-centos95-9.5-2.noarch.rpm -y # yum install postgresql95-server postgresql95-contrib -y2、使用pg_basebackup基础备份的工具制定备份目录。
# pg_basebackup -D /var/lib/pgsql/9.5/data -h 主节点IP -p 5432 -U replica -X stream -P Password: 30075/30075 kB (100%), 1/1 tablespace3、添加并修改recovery.conf。
# cp /usr/pgsql-9.5/share/recovery.conf.sample /var/lib/pgsql/9.5/data/recovery.conf # vim /var/lib/pgsql/9.5/data/recovery.conf设置以下参数。
standby_mode = on # 声明此节点为从库 primary_conninfo = 'host=主节点IP port=5432 user=replica password=replica' # 对应主库的连接信息 recovery_target_timeline = 'latest' # 流复制同步到最新的数据4、修改postgresql.conf。
# vim /var/lib/pgsql/9.5/data/postgresql.conf设置以下参数。
max_connections = 1000 # 最大连接数,从节点需设置比主节点大 hot_standby = on # 开启热备 max_standby_streaming_delay = 30s # 数据流备份的最大延迟时间 wal_receiver_status_interval = 1s # 从节点向主节点报告自身状态的最长间隔时间 hot_standby_feedback = on # 如果有错误的数据复制向主进行反馈5、修改数据目录属组属主。
# chown -R postgres.postgres /var/lib/pgsql/9.5/data6、启动服务,设置开机自启。
# systemctl start postgresql-9.5.service # systemctl enable postgresql-9.5.service步骤5:检测验证
1、主节点中可查看到sender进程。
# ps aux |grep sender postgres 2916 0.0 0.3 340388 3220 ? Ss 15:38 0:00 postgres: wal sender process replica 192.168.1.222(49640) streaming 0/F01C1A82、从节点中可查看到receiver进程。
# ps aux |grep receiver postgres 23284 0.0 0.3 387100 3444 ? Ss 16:04 0:00 postgres: wal receiver process streaming 0/F01C1A83、主库中可查看到从库状态。
replication=# select * from pg_stat_replication; pid | usesysid | usename | application_name | client_addr | client_hostname | client_port | backend_start | backend_xmin | state | sent_location | write_locati on | flush_location | replay_location | sync_priority | sync_state ------+----------+---------+------------------+---------------+-----------------+------------- +-------------------------------+--------------+-----------+---------------+------------- ---+----------------+-----------------+---------------+------------ 2916 | 16393 | replica | walreceiver | 192.168.1.222 | | 49640 | 2017-05-02 15:38:06.188988+08 | 1836 | streaming | 0/F01C0C8 | 0/F01C0C8 | 0/F01C0C8 | 0/F01C0C8 | 0 | async (1 rows)原文链接
相关资源:七夕情人节表白HTML源码(两款)