一、 简介:

         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. php读取html文件(或php文件)的方法

    一.使用fopen()函数   此函数主要传入的是头两个参数(第一个是文件地址,第二个是打开方式),可以读取任何一个文本文件,然后用while将fopen函数读取到的每一行数据循环输出.   如:   ...

  2. app设计需注意的

    手机上同步photoshop设计稿: ps play应用 设计: 资源: 1.音乐上传问题 音乐控制在2M以内,推荐使用[格式工厂]进行压缩. 2.视频上传问题 为了保证在线的播放效果,上传的视频大小 ...

  3. 比较数据泵和exp/imp对相同数据导出/导入的性能差异

    1环境准备 2演示exp/imp方式效率 3演示数据泵方式效率

  4. zju(5)LED控制实验

    1.实验目的 1.学习和掌握如何将一个驱动程序添加到Kconfig,编译到内核. 二.实验内容 1.编写EduKit-IV试验箱Linux操作系统下LED灯的驱动: 2.编写EduKit-IV试验箱L ...

  5. hadoop-1.2.1安装配置

    1.准备三台节点 hnd1  hnd2  hnd3 下载 hadoop 下载地址:http://apache.fayea.com/hadoop/common/ API文档:http://hadoop. ...

  6. iOS 状态栏黑色背景白色字体

    一. 状态栏背景(黑色)的设置 1.在有导航栏的情况下,给导航栏设置一个像素为44的背景图片即可 [[UINavigationBar appearance] setBackgroundImage:[U ...

  7. String的hashcode(java)

    hashCode就是我们所说的散列码,使用hashCode算法可以帮助我们进行高效率的查找,例如HashMap,说hashCode之前,先来看看Object类. Java程序中所有类的直接或间接父类, ...

  8. getServletPath getRequestURI getRequestURL区别

    getContextPath:/test               //上下文,类似工程名 getServletPath:/test.jsp getRequestURI:/test/test.jsp ...

  9. 定时调度模块:sched

    """A generally useful event scheduler class. 事件调度器类 Each instance of this class manag ...

  10. java notify和notifyAll的区别

    首先从名字可以了解,notify是通知一个线程获取锁,notifyAll是通知所有相关的线程去竞争锁. notify不能保证获得锁的线程,真正需要锁,并且可能产生死锁. 举例1: 所有人(消费者线程) ...