在MHA Manager端配置中,如果实现MHA的vip故障切换需要在配置文件/etc/masterha/app1/app1.cnf 中启用下面三个参数:

master_ip_failover_script= /etc/masterha/app1/master_ip_failover   #master failover时执行
#shutdown_script= /etc/masterha/power_manager
report_script= /etc/masterha/app1/send_report    #master failover时执行
master_ip_online_change_script=/etc/masterha/app1/master_ip_online_change   #master switchover时执行

MHA配置见:http://blog.csdn.net/lichangzai/article/details/50470771

脚本具体内容如下:

master_ip_failover(perl)脚本

[root@host8 app1]# cat master_ip_failover

#!/usr/bin/env perl
    use strict;
    use warnings FATAL =>'all';
     
    use Getopt::Long;
     
    my (
    $command,          $ssh_user,        $orig_master_host, $orig_master_ip,
    $orig_master_port, $new_master_host, $new_master_ip,    $new_master_port
    );
     
    my $vip = '10.1.5.21/24';  # Virtual IP
    my $key = "1";
    my $ssh_start_vip = "/sbin/ifconfig eth0:$key $vip";
    my $ssh_stop_vip = "/sbin/ifconfig eth0:$key down";
    my $exit_code = 0;
     
    GetOptions(
    'command=s'          => \$command,
    'ssh_user=s'         => \$ssh_user,
    'orig_master_host=s' => \$orig_master_host,
    'orig_master_ip=s'   => \$orig_master_ip,
    'orig_master_port=i' => \$orig_master_port,
    'new_master_host=s'  => \$new_master_host,
    'new_master_ip=s'    => \$new_master_ip,
    'new_master_port=i'  => \$new_master_port,
    );
     
    exit &main();
     
    sub main {
     
    #print "\n\nIN SCRIPT TEST====$ssh_stop_vip==$ssh_start_vip===\n\n";
     
    if ( $command eq "stop" || $command eq "stopssh" ) {
     
            # $orig_master_host, $orig_master_ip, $orig_master_port are passed.
            # If you manage master ip address at global catalog database,
            # invalidate orig_master_ip here.
            my $exit_code = 1;
            eval {
                print "\n\n\n***************************************************************\n";
                print "Disabling the VIP - $vip on old master: $orig_master_host\n";
                print "***************************************************************\n\n\n\n";
    &stop_vip();
                $exit_code = 0;
            };
            if ($@) {
                warn "Got Error: $@\n";
                exit $exit_code;
            }
            exit $exit_code;
    }
    elsif ( $command eq "start" ) {
     
            # all arguments are passed.
            # If you manage master ip address at global catalog database,
            # activate new_master_ip here.
            # You can also grant write access (create user, set read_only=0, etc) here.
    my $exit_code = 10;
            eval {
                print "\n\n\n***************************************************************\n";
                print "Enabling the VIP - $vip on new master: $new_master_host \n";
                print "***************************************************************\n\n\n\n";
    &start_vip();
                $exit_code = 0;
            };
            if ($@) {
                warn $@;
                exit $exit_code;
            }
            exit $exit_code;
    }
    elsif ( $command eq "status" ) {
            print "Checking the Status of the script.. OK \n";
            `ssh $ssh_user\@$orig_master_host \" $ssh_start_vip \"`;
            exit 0;
    }
    else {
    &usage();
            exit 1;
    }
    }
     
    # A simple system call that enable the VIP on the new master
    sub start_vip() {
    `ssh $ssh_user\@$new_master_host \" $ssh_start_vip \"`;
    }
    # A simple system call that disable the VIP on the old_master
    sub stop_vip() {
    `ssh $ssh_user\@$orig_master_host \" $ssh_stop_vip \"`;
    }
     
    sub usage {
    print
    "Usage: master_ip_failover –command=start|stop|stopssh|status –orig_master_host=host –orig_master_ip=ip –orig_master_port=po
    rt –new_master_host=host –new_master_ip=ip –new_master_port=port\n";
    }

master_ip_online_change(perl)脚本

[root@host8 app1]# cat master_ip_online_change

#!/usr/bin/env perl
    use strict;
    use warnings FATAL =>'all';
     
    use Getopt::Long;
     
    my $vip = '10.1.5.21/24';  # Virtual IP
    my $key = "1";
    my $ssh_start_vip = "/sbin/ifconfig eth0:$key $vip";
    my $ssh_stop_vip = "/sbin/ifconfig eth0:$key down";
    my $exit_code = 0;
     
    my (
      $command,              $orig_master_is_new_slave, $orig_master_host,
      $orig_master_ip,       $orig_master_port,         $orig_master_user,
      $orig_master_password, $orig_master_ssh_user,     $new_master_host,
      $new_master_ip,        $new_master_port,          $new_master_user,
      $new_master_password,  $new_master_ssh_user,
    );
    GetOptions(
      'command=s'                => \$command,
      'orig_master_is_new_slave' => \$orig_master_is_new_slave,
      'orig_master_host=s'       => \$orig_master_host,
      'orig_master_ip=s'         => \$orig_master_ip,
      'orig_master_port=i'       => \$orig_master_port,
      'orig_master_user=s'       => \$orig_master_user,
      'orig_master_password=s'   => \$orig_master_password,
      'orig_master_ssh_user=s'   => \$orig_master_ssh_user,
      'new_master_host=s'        => \$new_master_host,
      'new_master_ip=s'          => \$new_master_ip,
      'new_master_port=i'        => \$new_master_port,
      'new_master_user=s'        => \$new_master_user,
      'new_master_password=s'    => \$new_master_password,
      'new_master_ssh_user=s'    => \$new_master_ssh_user,
    );
     
     
    exit &main();
     
    sub main {
     
    #print "\n\nIN SCRIPT TEST====$ssh_stop_vip==$ssh_start_vip===\n\n";
     
    if ( $command eq "stop" || $command eq "stopssh" ) {
     
            # $orig_master_host, $orig_master_ip, $orig_master_port are passed.
            # If you manage master ip address at global catalog database,
            # invalidate orig_master_ip here.
            my $exit_code = 1;
            eval {
                print "\n\n\n***************************************************************\n";
                print "Disabling the VIP - $vip on old master: $orig_master_host\n";
                print "***************************************************************\n\n\n\n";
    &stop_vip();
                $exit_code = 0;
            };
            if ($@) {
                warn "Got Error: $@\n";
                exit $exit_code;
            }
            exit $exit_code;
    }
    elsif ( $command eq "start" ) {
     
            # all arguments are passed.
            # If you manage master ip address at global catalog database,
            # activate new_master_ip here.
            # You can also grant write access (create user, set read_only=0, etc) here.
    my $exit_code = 10;
            eval {
                print "\n\n\n***************************************************************\n";
                print "Enabling the VIP - $vip on new master: $new_master_host \n";
                print "***************************************************************\n\n\n\n";
    &start_vip();
                $exit_code = 0;
            };
            if ($@) {
                warn $@;
                exit $exit_code;
            }
            exit $exit_code;
    }
    elsif ( $command eq "status" ) {
            print "Checking the Status of the script.. OK \n";
            `ssh $orig_master_ssh_user\@$orig_master_host \" $ssh_start_vip \"`;
            exit 0;
    }
    else {
    &usage();
            exit 1;
    }
    }
     
    # A simple system call that enable the VIP on the new master
    sub start_vip() {
    `ssh $new_master_ssh_user\@$new_master_host \" $ssh_start_vip \"`;
    }
    # A simple system call that disable the VIP on the old_master
    sub stop_vip() {
    `ssh $orig_master_ssh_user\@$orig_master_host \" $ssh_stop_vip \"`;
    }
     
    sub usage {
    print
    "Usage: master_ip_failover –command=start|stop|stopssh|status –orig_master_host=host –orig_master_ip=ip –orig_master_port=po
    rt –new_master_host=host –new_master_ip=ip –new_master_port=port\n";
    }

master_ip_online_change(shell)脚本

#以下是重用写的master_ip_online_change(shell)脚本
[root@host8 app1]# cat master_ip_online_change.sh

#/bin/bash
    source /root/.bash_profile
     
    vip=`echo '10.1.5.21/24'`  # Virtual IP
    key=`echo '1'`
     
    command=`echo "$1" | awk -F = '{print $2}'`
    orig_master_host=`echo "$2" | awk -F = '{print $2}'`
    new_master_host=`echo "$7" | awk -F = '{print $2}'`
    orig_master_ssh_user=`echo "${12}" | awk -F = '{print $2}'`
    new_master_ssh_user=`echo "${13}" | awk -F = '{print $2}'`
     
    stop_vip=`echo "ssh root@$orig_master_host /sbin/ifconfig  eth0:$key  down"`
    start_vip=`echo "ssh root@$new_master_host /sbin/ifconfig  eth0:$key  $vip"`
     
    if [ $command = 'stop' ]
       then
       echo -e "\n\n\n***************************************************************\n"
       echo -e "Disabling the VIP - $vip on old master: $orig_master_host\n"
       $stop_vip
       if [ $? -eq 0 ]
          then
          echo "Disabled the VIP successfully"
       else
          echo "Disabled the VIP failed"
       fi
       echo -e "***************************************************************\n\n\n\n"
    fi
     
    if [ $command = 'start' -o $command = 'status' ]
       then
       echo -e "\n\n\n***************************************************************\n"
       echo -e "Enabling the VIP - $vip on new master: $new_master_host \n"
       $start_vip
       if [ $? -eq 0 ]
          then
          echo "Enabled the VIP successfully"
       else
          echo "Enabled the VIP failed"
       fi
       echo -e "***************************************************************\n\n\n\n"
    fi

send_report(shell)脚本

[root@host8 app1]# cat send_report

#/bin/bash
    source /root/.bash_profile
     
    orig_master_host=`echo "$1" | awk -F = '{print $2}'`
    new_master_host=`echo "$2" | awk -F = '{print $2}'`
    new_slave_hosts=`echo "$3" | awk -F = '{print $2}'`
    subject=`echo "$4" | awk -F = '{print $2}'`
    body=`echo "$5" | awk -F = '{print $2}'`
     
    #判断日志结尾是否有successfully,有则表示切换成功,成功与否都发邮件。
    tac /etc/masterha/app1/manager.log | sed -n 2p | grep 'successfully' > /dev/null
    if [ $? -eq 0 ]
        then
        echo -e "MHA $subject 主从切换成功\n master:$orig_master_host --> $new_master_host \n $body \n 当前从库:$new_slave_hosts" | mutt
     -s "MySQL实例宕掉,MHA $subject 切换成功" -- 94097532@qq.com
    else
        echo -e "MHA $subject 主从切换失败\n master:$orig_master_host --> $new_master_host \n $body" | mutt -s "MySQL实例宕掉,MHA $subje
    ct 切换失败" -- 94097532@qq.com
    fi

---------------------
作者:常飞梦
来源:CSDN
原文:https://blog.csdn.net/lichangzai/article/details/50503960
版权声明:本文为博主原创文章,转载请附上博文链接!

MHA 实现VIP切换用到脚本的更多相关文章

  1. MHA 一主两从搭建-脚本VIP-自动切换

    环境介绍:主机名 IP MHA角色 MySQL角色node1 192.168.56.26 Node MySQL Master node2 192.168.56.27 Node MySQL Master ...

  2. MHA的在线切换后的一些总结(mha方案来自网络)

    mha方案来自:http://www.cnblogs.com/xuanzhi201111/p/4231412.html MHA的在线切换 192.168.2.131 [root bin]$ maste ...

  3. mysql mha 主从自动切换 高可用

    mha(Master High Availability)目前在MySQL多服务器(超过二台),高可用方面是一个相对成熟的解决方案. 一,什么是mha,有什么特性 1. 主服务器的自动监控和故障转移 ...

  4. keepalived主备节点都配置vip,vip切换异常案例分析

    原文地址:http://blog.51cto.com/13599730/2161622 参考地址:https://blog.csdn.net/qq_14940627/article/details/7 ...

  5. MySQL Orchestrator自动导换+VIP切换

    目录 Orchestrator总体结构...  测试环境信息...  Orchestrator详细配置...  SSH免密配置...  /etc/hosts配置...  visudo配置...  /e ...

  6. keepalived+lvs子网掩码造成VIP切换故障 + vrrp_script+track_script

    keepalived+lvs子网掩码造成VIP切换故障 架构:keepalived+lvs ,前端调度器是双主模型 现象:keepalived手动停掉一台,但是虚拟IP不会切换 整体网络是24位 VI ...

  7. bat 批处理切换到当前脚本所在文件夹

    bat 批处理切换到当前脚本所在文件夹   切换到当前脚本所在的文件夹 ? 1 cd  %~dp0 另外附上一些bat基本内容 —————————————————————————————— 批处理常用 ...

  8. MYSQL + MHA +keepalive + VIP安装配置(二)--MHA的配置

    一.总概 1.MHA介绍 MHA(Master High Availability)是自动的master故障转移和Slave提升的软件包.它是基于标准的MySQL复制(异步/半同步).      MH ...

  9. mysql高可用架构 -> MHA配置VIP漂移-05

    VIP漂移的两种方式 1)通过keepalived的方式,管理虚拟IP的漂移 2)通过MHA自带脚本方式,管理虚拟IP的漂移 MHA脚本方式 虚拟ip漂移的脚本下载地址 -> wget http ...

随机推荐

  1. mysql wait_timeout 8小时问题解决,tomcat数据源的配置

    异常报错: 2017-02-13 09:30:17.597 [startQuertz_Worker-6] ERROR com.autoyol.task.TransStatManageTask#exec ...

  2. 大杂烩 -- 四种生成和解析XML文档的方法详解

    基础大杂烩 -- 目录 众所周知,现在解析XML的方法越来越多,但主流的方法也就四种,即:DOM.SAX.JDOM和DOM4J DOM:在现在的Java JDK里都自带了,在xml-apis.jar包 ...

  3. JavaScript 之 function函数及参数arguments

    JavaScript用function关键字声明函数,可以用return返回值,也可以没有返回值. 建议:要么统一有返回值,要么统一都没有返回值,这样调试代码方便. 函数定义格式: function ...

  4. Linux下跑程序,防止命令终端(断网,断电)

    有时候我们在服务器上跑程序,会发现当我们离开窗口时,正在执行的程序中断了,这让人非常郁闷.下面介绍防止程序中断的方法: 新建一个名为yourname的Screen窗口: screen -S yourn ...

  5. 面试题思考:GET和POST两种基本请求方法的区别

    面试回答: GET请求在URL中传送的参数是有长度限制的,而POST没有. GET比POST更不安全,因为参数直接暴露在URL上,所以不能用来传递敏感信息. GET参数通过URL传递,POST放在Re ...

  6. 【!Important】Java线程死锁查看分析方法

    一.Jconsole Jconsole是JDK自带的图形化界面工具,使用JDK给我们提过的工具JConsole,可以通过cmd打开命令框然后输入Jconsole打开图形工具 然后点击检测死锁就可以查看 ...

  7. 微信小程序学习——框架视图层(view)

    视图层是有WXML与WXSS编写的,由组件来进行展示. WXML(WeiXin Markup Language)用于写页面结构的. WXSS(WeiXin Style Sheet)用于页面的样式. 组 ...

  8. 体验 PHP under .NET Core

    昨天在 The week in .NET 中发现 Scott Hanselman 的这篇博文 Peachpie - Open Source PHP Compiler to .NET and WordP ...

  9. HDU 5950 - Recursive sequence - [矩阵快速幂加速递推][2016ACM/ICPC亚洲区沈阳站 Problem C]

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5950 Farmer John likes to play mathematics games with ...

  10. BZOJ 1002 - 轮状病毒 - [基尔霍夫矩阵(待补)+高精度]

    题目链接:https://www.lydsy.com/JudgeOnline/problem.php?id=1002 Description 轮状病毒有很多变种,所有轮状病毒的变种都是从一个轮状基产生 ...