MySQL5.7.36之高可用架构部署-MHA-VIP漂移

1、创建文件 vi /usr/local/bin/master_vip_mysql_mha

复制代码
#!/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 = '192.168.31.220/24'; #同一段落IP,需要管理员那边申请
my $key = '1';
my $ssh_start_vip = "/sbin/ifconfig ens33:$key $vip"; #如果你的网卡名称不是ens33,那就需要修改
my $ssh_stop_vip = "/sbin/ifconfig ens33:$key down"; #如果你的网卡名称不是ens33,那就需要修改
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" ) {
        my $exit_code = 1;
        eval {
            print "Disabling the VIP on old master: $orig_master_host \n";
            &stop_vip();
            $exit_code = 0;
        };
        if ($@) {
            warn "Got Error: $@\n";
            exit $exit_code;
        }
        exit $exit_code;
    }
    elsif ( $command eq "start" ) {
        my $exit_code = 10;
        eval {
            print "Enabling the VIP - $vip on the new master - $new_master_host \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";
        exit 0;
    }
    else {
        &usage();
        exit 1;
    }
}
sub start_vip() {
    `ssh $ssh_user\@$new_master_host \" $ssh_start_vip \"`;
}
sub stop_vip() {
     return 0  unless  ($ssh_user);
    `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=port --new_master_host=host --new_master_ip=ip --new_master_port=port\n";
}

2、将master_vip_mysql_mha文件进行文本转化

复制代码
yum -y install dos2unix*
dos2unix /usr/local/bin/master_vip_mysql_mha

3、将master_vip_mysql_mha文件添加可执行文件

复制代码
chmod +x /usr/local/bin/master_vip_mysql_mha

4、在manager配置文件【server default】中添加master_ip_failover_script记录

复制代码
vi /etc/mha/app1.cnf
master_ip_failover_script=/usr/local/bin/master_vip_mysql_mha

5、在此时的主库上,手动生成第一个vip地址

复制代码
ifconfig ens33:1 192.168.31.220/24
如果指令错误请采用以下指令删除:ifconfig ens33:1 down 

6、重启mha

复制代码
masterha_stop --conf=/etc/mha/app1.cnf #停止
nohup masterha_manager --conf=/etc/mha/app1.cnf --remove_dead_master_conf --ignore_last_failover < /dev/null > /var/log/mha/app1/manager.log 2>&1 & #启动
masterha_check_status --conf=/etc/mha/app1.cnf #查看MHA状态
相关推荐
小羊Linux客栈2 小时前
自动化:批量文件重命名
运维·人工智能·python·自动化·游戏程序
伤不起bb3 小时前
MySQL 高可用
linux·运维·数据库·mysql·安全·高可用
whgjjim5 小时前
docker迅雷自定义端口号、登录用户名密码
运维·docker·容器
Yushan Bai8 小时前
ORACLE RAC环境REDO日志量突然增加的分析
数据库·oracle
躺着听Jay8 小时前
Oracle-相关笔记
数据库·笔记·oracle
瀚高PG实验室8 小时前
连接指定数据库时提示not currently accepting connections
运维·数据库
QQ2740287568 小时前
Soundness Gitpod 部署教程
linux·运维·服务器·前端·chrome·web3
淡忘_cx8 小时前
【frp XTCP 穿透配置教程
运维
南方以南_9 小时前
Ubuntu操作合集
linux·运维·ubuntu
运维成长记9 小时前
mysql数据库-中间件MyCat
数据库·mysql·中间件