一、 简介:

         PG在9.*版本后热备提供了新的一个功能,那就是Stream Replication的读写分离,是PG高可用性的一个典型应用。其中备库是只读库;若主库出现故障;备库这个时候需要占出来替代主库工作。这才是hot standby的高可用性应用。如何替代了;这个就是本次测试的内容。
 

二、系统环境

系统平台:CentOS 6.2

   PostgreSQL版本:9.0.3
   master :   192.168.1.202
   slave  :   192.168.1.201 
 

三、搭建步骤

    环境数据库搭建参考地址http://www.cnblogs.com/lottu/p/5584923.html

四、模拟主库出现故障

    这里只是将主库关闭
    在238库上面执行 pg_stop
 

五、激活备库

   现环境主库238已经停掉了。备库目前只有只读功能。现在将备库激活;只需一步简单操作就行。
   根据其中$PGDATA/recovery.conf内容中trigger_file = '/data/pgdata/trigger_standby'
   创建一个空文件就行。
     touch /data/pgdata/trigger_standby
   过一会儿该文件recovery.conf 会变成 recovery.done;这个时候表明已经激活备库了。此时备库可以读写操作。替代原主库工作。
 

六、激活原主库

   现环境的229库是没有备库;为了提供环境中高可用性;添加备库。若原主库故障解决了。可以替换成备库。
   方案一:像搭建hot standby 一样操作。即参考http://www.cnblogs.com/lottu/p/5584923.html
   方案二:比方案一操作简单多了。在238上面操作;即现备库
   新建 $PGDATA/recovery.conf
recovery_target_timeline = 'latest'
standby_mode = 'on'
primary_conninfo = 'host=192.168.1.201 port=5432 user=repuser password=li0924'
trigger_file = '/data/pgdata/trigger_standby'
其中注意有两点:
      1. 需要修改postgresql.conf文件里面的 hot_standby = on ;

2. 假如其现主库运行一段时间;需要同步日志;可以直接将$PGDATA目录下面的pg_xlog同步过去。

3. 在第2个延伸;在9.5版本提供一个特性-pg_rewind;用它来同步wal日志

pg_rewind --target-pgdata $PGDATA --source-server='host=192.168.1.201 port=5432 user=postgres dbname=mydb'

七、检测切换结果

   在现主库229上面查看进程
[postgres@sdserver40_222 ~]$ ps -ef | grep postgres
postgres  1206 32271  0 11:57 pts/0    00:00:00 ps -ef
postgres  1207 32271  0 11:57 pts/0    00:00:00 grep postgres
root     32269 31857  0 11:09 pts/0    00:00:00 su - postgres
postgres 32271 32269  0 11:09 pts/0    00:00:00 -bash
postgres 32347     1  0 11:11 pts/0    00:00:00 /opt/pgsql/bin/postgres
postgres 32357 32347  0 11:11 ?        00:00:00 postgres: checkpointer process
postgres 32358 32347  0 11:11 ?        00:00:00 postgres: writer process
postgres 32359 32347  0 11:11 ?        00:00:00 postgres: wal writer process
postgres 32360 32347  0 11:11 ?        00:00:00 postgres: autovacuum launcher process
postgres 32361 32347  0 11:11 ?        00:00:00 postgres: archiver process
postgres 32362 32347  0 11:11 ?        00:00:00 postgres: stats collector process
postgres 32371 32347  0 11:11 ?        00:00:00 postgres: wal sender process repuser 192.168.1.202(59806) streaming 0/2F0008B0

查看现备库进程

[postgres@sdserver40_210 pgdata]$ ps -ef | grep postgres
root      1193 31003  0 11:09 pts/1    00:00:00 su - postgres
postgres  1194  1193  0 11:09 pts/1    00:00:00 -bash
postgres  1280     1  0 11:11 pts/1    00:00:00 /opt/pgsql95/bin/postgres
postgres  1287  1280  0 11:11 ?        00:00:00 postgres: startup process   recovering 00000007000000000000002F
postgres  1288  1280  0 11:11 ?        00:00:00 postgres: checkpointer process
postgres  1289  1280  0 11:11 ?        00:00:00 postgres: writer process
postgres  1290  1280  0 11:11 ?        00:00:00 postgres: stats collector process
postgres  1291  1280  0 11:11 ?        00:00:00 postgres: wal receiver process   streaming 0/2F0008B0
postgres  2625  1194  0 11:58 pts/1    00:00:00 ps -ef
postgres  2626  1194  0 11:58 pts/1    00:00:00 grep postgres
[postgres@sdserver40_210 pgdata]$ 

参考地址:

手动切换: http://francs3.blog.163.com/blog/static/405767272011724103133766/

自动切换:德哥:https://github.com/digoal/PostgreSQL_HA_with_primary_standby_2vip

PostgreSQL Hot Standby的主备切换的更多相关文章

  1. (摘)DataGuard物理standby管理 - 主备切换

    DataGuard物理standby管理 - 主备切换 Dataguard的切换分为两种,switchover和failover. switchover一般用于数据库或硬件升级,这时只需要较短时间中断 ...

  2. Oracle 12C 物理Standby 主备切换switchover

    Oracle 12C 物理Standby 主备切换switchover Oracle 12C 物理Standby 主备切换switchover Table of Contents 1. 简述 2. 切 ...

  3. KingbaseES R6 集群主机锁冲突导致的主备切换案例

    ​ 案例说明: 主库在业务高峰期间,客户执行建表等DDL操作,主库产生"AccessExclusiveLock "锁,导致大量的事务产生锁冲突,大量的会话堆积,客户端session ...

  4. Spark系列(五)Master主备切换机制

    Spark Master主备切换主要有两种机制,之中是基于文件系统,一种是基于Zookeeper.基于文件系统的主备切换机制需要在Active Master挂掉后手动切换到Standby Master ...

  5. 测试redis+keepalived实现简单的主备切换【转载】

    转自: 测试redis+keepalived实现简单的主备切换 - Try My Best 尽力而为 - ITeye技术网站http://raising.iteye.com/blog/2311757 ...

  6. Oracle 11.2.0.4.0 Dataguard部署和日常维护(5)-Datauard 主备切换和故障转移篇

    1. dataguard主备切换   1.1. 查看当前主备库是否具备切换条件 on slave select sequence#,first_time,next_time,archived,appl ...

  7. Postgres主备切换

    主备查询 主备不会自动切换(即需要实现线上环境主数据库宕掉之后,从数据库能够自动切换为主数据库,需要借用第三方软件,例如heartbeat等) (1)如何查看是primary还是standby 方法1 ...

  8. 在Azure云上实现postgres主备切换

    以下是工作上实现postgres主备切换功能所用到的代码和步骤,中间走了不少弯路,在此记录下.所用到的操作系统为centos 7.5,安装了两台服务器,hostname为VM7的为Master,VM8 ...

  9. Oracle DataGuard主备切换(switchover)

    Oracle DataGuard主备切换可以使用传统的手动命令切换,也可以使用dgmgr切换,本文记录手动切换. (一)将主库切换为物理备库 STEP1:查看主库状态 SQL> SELECT O ...

随机推荐

  1. js写当鼠标悬浮及移开出现背景变化

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  2. bootstrap使用性能问题

    1.如icheckbox等的初始化,不要采用类似for in的循环来对所需应用的元素进行初始化,直接采用如  $('[data-toggle="popover"]').popove ...

  3. IOS第二天

    第二天 *******图片的放大,和缩小 (去掉自动的布局) -(IBAction ) zoomFrame:(UIbutton *) button{ CGRect frame= self.iconBu ...

  4. ubuntu下wine安装软件

    安装wine 1. sudo apt-get install playonlinux playonlinux就是wine.或者在软件中心,搜索wine. 2. 在dash搜索playonlinux 安 ...

  5. 用Scala实现集合中相邻元素间的差值

    欢迎转载,转载请注明出处,徽沪一郎. 概要 代码这东西,不写肯定不行,新学Scala不久,将实际遇到的一些问题记录下来,日后也好查找. 今天讲的是如何计算同一集合中元素两两之间的差值,即求开始集合(a ...

  6. jdk安装配置具体分析

    JDK 选择安装目录 安装过程中会出现两次 安装提示 .第一次是安装 jdk ,第二次是安装 jre .建议两个都安装在同一个java文件夹中的不同文件夹中.(不能都安装在java文件夹的根目录下,j ...

  7. 虚拟机设置静态ip

    最近学习hadoop,用到虚拟机来做分布式,由于hadoop要配置slave节点的主机名,所以需要修改hosts文件的ip地址和主机名的映射关系. 但是虚拟机每次重启后,ip地址都会变 ,这样每次都得 ...

  8. Android 签名比较

    一. keytool -list -printcert -jarfile "%filename%" 二. 非常low方法:下载的应用安装能成功覆盖原应用则签名一致三. 作者:陈子腾 ...

  9. UIAlertController 的使用

    IAlertController 同时替代了 UIAlertView 和 UIActionSheet,从系统层级上统一了 alert 的概念 —— 即以 modal 方式或 popover 方式展示. ...

  10. SynchronousQueue 的简单应用

    SynchronousQueue是这样一种阻塞队列,其中每个 put 必须等待一个 take,反之亦然.同步队列没有任何内部容量,甚至连一个队列的容量都没有.      不能在同步队列上进行 peek ...