MHA

一、项目规划

主机 ip

主库(master) 192.168.2.56

从库(slave1) 192.168.2.58

从库(slave2) 192.168.2.59

虚拟VIP(vrrp漂移) 192.168.2.60

二、前期准备

a.系统Centos Liunx release

b.IP节点以上述为准

c.三台MySql版本为 5.7

d.MySql链接地址 MYSQL 5.7

三、在三台服务器执行操作

修改主机名称(主)

[root@ c7m01]# vi /etc/hostname
c7m01
修改主机名(从)

[root@ c702]# vim /etc/hostname
c702

修改主机名(从)

[root@ c703]# vim /etc/hostname
c703
综合上述:修改主机名

时间同步(3台机器)

[root@ c7m01]# echo “/5 * /usr/sbin/ntpdate ntp1.aliyun.com >/dev/null 2>&1” >>/var/spool/cron/root

修改完成,重启机器就可以

[root@c7m01]# systemctl restart mysqld

四、三台服务器配置hosts解析(主机名称和自己一样)

[root@ c7m01]# vim /etc/hostsEOF

c7m01 192.168.2.56
c702 192.168.2.57
c703 192.168.2.58

五、关闭防火墙和selinux(三台机器执行同样的操作)

systemctl stop firewalld
systemctl disable firewalld
setenforce 0
[root@ c7m01 ~]# sed -i ‘ /^SELINUX/s#enforcing#disabled#g’ /etc/selinux/config

六、SSH互信免密登录

三台服务器做SSH互信

192.168.2.56

192.168.2.57

192.168.2.58

A.在c7m01服务器上执行

ssh-keygen -t rsa
一路默认回车,系统在/root/.ssh下生成id_rsa、id_rsa.pub

[root@C7m01]# ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:A1sPI0++eebjaumP8TlwgZZUGG1jsHahWpvHJkhGGUY root@host101
The key’s randomart image is:
+—[RSA 2048]—-+
| .Eooo |
| o. oo=. |
| =.X=.. |
| o &+O. |
| +.S =. |
| .B. |
| ++o |
| oBo. |
| o++
o |
+—-[SHA256]—–+

B.查看生成的公钥秘钥对

命令:ls /root/.ssh

[root@c7m01]# ls /root/.ssh
id_rsa id_rsa.pub known_hosts

C.将生成的公钥私钥对id_rsa.pub发送到其他的服务器上

命令: ssh-copy-id -i /root/.ssh/id_rsa.pub 192.168.2.57

[root@c7m01]# ssh-copy-id -i /root/.ssh/id_rsa.pub 192.168.2.57
/usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: “/root/.ssh/id_rsa.pub”
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed — if you are prompted now it is to install the new keys
[email protected]’s password: —此处需要输入57服务器的密码

Number of key(s) added: 1

Now try logging into the machine, with: “ssh ‘192.168.2.57’”
and check to make sure that only the key(s) you wanted were added.

可以看到成功将公钥私钥对发送到了其他服务器

ssh 192.168.2.57 根据提示信息,只要执行这个命令就可以连接到57服务器了

D.现在可以测试连接其他的服务器的是否不需要密码就能登录,可以看到确实成功了。

[root@c7m01]ssh 192.168.2.57
Last login: Mon Oct 19 09:16:59 2020 from gateway
[root@c702]# exit
logout
Connection to 192.168.150.102 closed
E.ssh 192.168.2.56 测试

[root@c702]# ssh 192.168.2.56
Last login: Tue Dec 8 15:26:35 2020 from 192.168.2.15 #无密码登录
[root@c7m01]# ifconfig
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.2.56 netmask 255.255.255.0 broadcast 192.168.2.255 #查看ifconfig变化
inet6 fe80::1ded:1203:fad9:ae6 prefixlen 64 scopeid 0x20
ether 00:0c:29:3b:a8:c3 txqueuelen 1000 (Ethernet)
RX packets 14379 bytes 1590236 (1.5 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 7012 bytes 677052 (661.1 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10
loop txqueuelen 1 (Local Loopback)
RX packets 280 bytes 23849 (23.2 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 280 bytes 23849 (23.2 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

[root@c7m01 ~]# exit #在192.168.2.57 一定记得退出上述操作 查看ifconfig

七、MySql环境搭建

  1. 安装MYSQL5.7的Yum Repository

wget -i -c //dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
yum -y install mysql57-community-release-el7-10.noarch.rpm
yum -y install mysql-community-server

2.启动MySQL,三台服务器执行同样的操作

[root@ c7m01]# systemctl restart mysql

八.修改登录(免密登录之前)

修改登录密码涉及到一个版本BUG

本意向修改一个用户的密码,命令如下

< mysql> update user set password=password(“新密码”) where user=”用户名”;

执行后报错  ERROR 1054(42S22) Unknown column ‘password’ in ‘field list’

错误的原因是 5.7版本下的mysql数据库下已经没有password这个字段了,password字段改成了authentication_string

所以请使用一下命令:

mysql -u root -p
Enter password: ********
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 5.7.18-log MySQL Community Server (GPL)

Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.

mysql> use mysql;
Database changed
mysql> select User from user; #此处为查询用户命令
+———–+
| User |
+———–+
| ******* |
| mysql.sys |
| root |
+———–+
3 rows in set (0.00 sec)

mysql> update user set password=password(““) where user=”“; #修改密码报错 **是指自己的密码
ERROR 1054 (42S22): Unknown column ‘password’ in ‘field list’
mysql> update mysql.user set authentication_string=password(‘‘) where user=’‘; #修改密码成功
Query OK, 1 row affected, 1 warning (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 1

mysql> flush privileges; #立即生效
Query OK, 0 rows affected (0.00 sec)

mysql> quit
Bye

n>mysql -u ******* -p #以该用户登录成功.
Enter password: ********
…………………………
mysql>

九、修改c7m01服务器的mysql配置文件(三台都是需要做修改的,只有server-id修改为不一样的就可以了)

vi /etc/my.cnf

[mysqld]
server-id=1 #修改server-id=2、server-id=3
log-bin=mysql-bin

禁止mysql自动删除relaylog工能

relay_log_purge = 0

mysql5.6已上的特性,开启gtid,必须主从全开

gtid_mode = on
enforce_gtid_consistency = 1
log_slave_updates = 1更改完成后重启mysqlsystemctl restart mysql

十、在三个MySQL节点上做授权配置(主从授权)

A.示例:(注意三个节点都需要授权)

MySQL赋予用户权限的命令的简单格式为

  grant 权限 on 数据库对象 to 用户
  grant 权限 on 数据库对象 to 用户 identified by “密码”
mysql> grant replication slave on . to ‘repl’@’192.168.2.%’ identified by ‘123456’;#授权主从同步用户
mysql> grant all on . to ‘mha’@’192.168.2.%’ identified by ‘123456’; #授权MHA管理用户,很重要
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

B.在两个salve节点上,只读限制(防止意外被写数据)-特别重要

mysql> set global read_on=1;

十一、提示:确保前面部署设置都是OK的,在进入下面环节

十二、在主查看Master的状态(主从备份)

a.打开链接

mysql>start slave;
b.查看主master状态

mysql> show master status;
+—————+———-+————–+——————+——————-+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+—————+———-+————–+——————+——————-+
| binlog.000011 | 154 | mydb | mysql | |
+—————+———-+————–+——————+——————-+
1 row in set (0.00 sec)
c.创建同步用户,打开链接

mysql> change master to master_host=’192.168.2.56′,
master_user=’rep’,
master_password=’123456′,
master_log_file=’binlog.000011′,
master_log_pos=154;
d.查看主从状态两个YES代表正常(57、58)都需要查看

mysql> show slave status\G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 192.168.2.56
Master_User: rep
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000011
Read_Master_Log_Pos: 154
Relay_Log_File: localhost-relay-bin.000052
Relay_Log_Pos: 360
Relay_Master_Log_File: mysql-bin.000017
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 194
Relay_Log_Space: 19375
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:

E:验证MySql主从同步,在主库写入数据

 1.写入数据

mysql> use mydb;
Database changed
mysql> create table test(id int primary key);
Query OK, 0 rows affected (0.03 sec)
mysql> insert into test values(1);
Query OK, 1 row affected (0.02 sec)
mysql> insert into test values(2);
Query OK, 1 row affected (0.00 sec)
mysql> insert into test values(3);
Query OK, 1 row affected (0.01 sec)
mysql> insert into test values(4);
Query OK, 1 row affected (0.00 sec)
mysql> insert into test values(5);
Query OK, 1 row affected (0.00 sec)
mysql> select * from mydb.test;
+—-+
| id |
+—-+
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
+—-+
2.slave1节点验证

mysql> select * from mydb.test;
+—-+
| id |
+—-+
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
+—-+
3.slave2节点验证

mysql> select * from mydb.test;
+—-+
| id |
+—-+
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
+—-+

十三、部署MHA集群架构

  1. 安装MHA软件(在三个节点上都的安装MHA的node软件)

    a.安装依赖

wget //dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
rpm -ivh epel-release-latest-7.noarch.rpm
yum install perl-DBD-MySQL perl-Config-Tiny perl-Log-Dispatch perl-Parallel-ForkManager -y
b. 安装node(二选一)

wget //qiniu.wsfnk.com/mha4mysql-node-0.58-0.el7.centos.noarch.rpm
wget //github.com/yoshinorim/mha4mysql-node/releases/download/v0.58/mha4mysql-node-0.58-0.el7.centos.noarch.rpm
rpm -ivh mha4mysql-node-0.58-0.el7.centos.noarch.rpm
c.slave 3 配置MHA(manager节点在c703:192.168.2.58)上

wget //github.com/yoshinorim/mha4mysql-manager/releases/download/v0.58/mha4mysql-manager-0.58-0.el7.centos.noarch.rpm
rpm -ivh mha4mysql-manager-0.58-0.el7.centos.noarch.rpm

2.配置MHA

创建目录准备配置文件

[root@ c703 ~]# mkdir -p /etc/mha
[root@ c703 ~]# mkdir -p /var/log/mha/app1
[root@ c703 ~]# vim /etc/mha/app1.cnf
[server default]
manager_log=/var/log/mha/app1/manager.log
manager_workdir=/var/log/mha/app1
master_binlog_dir=/var/lib/mysql #binlog的目录,如果说miysql的环境不一样,binlog位置不同,每台服务器的binlog的位置写在server标签里面即可
user=mha
password=mha
ping_interval=2
repl_password=123456
repl_user=rep
ssh_user=root
[server1]
hostname=10.0.0.12
port=3306
[server2]
hostname=10.0.0.13
port=3306
[server3]
hostname=10.0.0.14
port=3306
ignore_fail=1 #如果这个节点挂了,mha将不可用,加上这个参数,slave挂了一样可以用
no_master=1 #从不将这台主机转换为master

candidate_master=1 #如果候选master有延迟的话,relay日志超过100m,failover切换不能成功,加上此参数后会忽略延迟日志大小。

check_repl_delay=0 #用防止master故障时,切换时slave有延迟,卡在那里切不过来

注意这里的配置要把注释和空格全部删除

十四、验证MHA状态

验证ssh状态

[root@ c703 ~]# masterha_check_ssh –con=/etc/mha/app1.cnf
Fri Feb 21 13:37:37 2020 – [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Fri Feb 21 13:37:37 2020 – [info] Reading application default configuration from /etc/mha/app1.cnf..
Fri Feb 21 13:37:37 2020 – [info] Reading server configuration from /etc/mha/app1.cnf..
Fri Feb 21 13:37:37 2020 – [info] Starting SSH connection tests..
Fri Feb 21 13:37:38 2020 – [debug]
Fri Feb 21 13:37:37 2020 – [debug] Connecting via SSH from [email protected](10.0.0.12:22) to [email protected](10.0.0.13:22)..
Fri Feb 21 13:37:38 2020 – [debug] ok.
Fri Feb 21 13:37:38 2020 – [debug] Connecting via SSH from [email protected](10.0.0.12:22) to [email protected](10.0.0.14:22)..
Fri Feb 21 13:37:38 2020 – [debug] ok.
Fri Feb 21 13:37:39 2020 – [debug]
Fri Feb 21 13:37:37 2020 – [debug] Connecting via SSH from [email protected](10.0.0.13:22) to [email protected](10.0.0.12:22)..
Fri Feb 21 13:37:39 2020 – [debug] ok.
Fri Feb 21 13:37:39 2020 – [debug] Connecting via SSH from [email protected](10.0.0.13:22) to [email protected](10.0.0.14:22)..
Fri Feb 21 13:37:39 2020 – [debug] ok.
Fri Feb 21 13:37:40 2020 – [debug]
Fri Feb 21 13:37:38 2020 – [debug] Connecting via SSH from [email protected](10.0.0.14:22) to [email protected](10.0.0.12:22)..
Fri Feb 21 13:37:39 2020 – [debug] ok.
Fri Feb 21 13:37:39 2020 – [debug] Connecting via SSH from [email protected](10.0.0.14:22) to [email protected](10.0.0.13:22)..
Fri Feb 21 13:37:40 2020 – [debug] ok.
Fri Feb 21 13:37:40 2020 – [info] All SSH connection tests passed successfully.

十五、启动MHA

1.参考MHA常用命令:

1.查看ssh登陆是否成功 masterha_check_ssh –con=/etc/masterha/app1.cnf

2.查看复制是否建立好 masterha_check_repl –con=/etc/masterha/app1.cnf

3.启动mha nohup masterha_manager –con=/etc/masterha/app1.cnf > /tmp/mha_manager.log < /dev/null 2>&1 &
当有slave节点宕掉的情况是启动不了的,加上–ignore_fail_on_start
即使有节点宕掉也能启动mha nohup masterha_manager –con=/etc/masterha/app1.cnf
–ignore_fail_on_start > /tmp/mha_manager.log < /dev/null 2>&1 &

4.检查启动的状态masterha_check_status –con=/etc/masterha/app1.cnf

5.停止mhamasterha_stop –con=/etc/masterha/app1.cnf

6.failover后下次重启每次failover切换后会在管理目录生成文件app1.failover.complete ,
下次在切换的时候会发现有这个文件导致切换不成功, 需要手动清理掉。
rm -rf /masterha/app1/app1.failover.complete也可以加上参数–ignore_last_failover

7.手工failover手工failover场景,master死掉,但是masterha_manager没有开启,
可以通过手工failover:masterha_master_switch –con=/etc/masterha/app1.cnf
–dead_master_host=10.50.2.10 –master_state=dead –new_master_host=10.50.2.12 –ignore_last_failover

8.masterha_manager是一种监视和故障转移的程序。另一方面,masterha_master_switch程序不监控主库。
masterha_master_switch可以用于主库故障转移,也可用于在线总开关。

9.手动在线切换masterha_master_switch –con=/etc/app1.cnf
–master_state=alive –new_master_host=192.168.119.74 –
-orig_master_is_new_slave 或者masterha_master_switch –con=/etc/app1.cnf
–master_state=alive –new_master_host=192.168.119.74
–orig_master_is_new_slave –running_updates_limit=10000–orig_master_is_new_slave

10.ps -ef|grep详解 #ps 查找 grep 命令查找

2.启动MHA

[root@ c703 ~]# nohup masterha_manager –con=/etc/mha/app1.cnf –remove_dead_master_conf –ignore_last_failover < /dev/null > /var/log/mha/app1/manager.log 2>&1 &
[1] 6041
[root@ c703 ~]# ps -ef |grep mha
root 6041 4852 0 14:37 pts/0 00:00:00 perl /usr/bin/masterha_manager –con=/etc/mha/app1.cnf –remove_dead_master_conf –ignore_last_failover
root 6066 4852 0 14:38 pts/0 00:00:00 grep –color=auto mha

[root@ c703 ~]# ps -ef |grep mha

3.查看MHA的状态

[root@ c703 ~]# masterha_check_status –con=/etc/mha/app1.cnf
app1 (pid:6041) is running(0:PING_OK), master:192.168.2.56

4.检查MHA的配置文件

 在测试的过程中如果产生VIP的转换,在未将MHA故障还原的情况下,会造成MHA管理的配置文件删除

[root@ c703 ~]# cat /etc/mha/app1.cnf
[server default]
manager_log=/var/log/mha/app1/manager.log
manager_workdir=/var/log/mha/app1
master_binlog_dir=/var/lib/mysql
user=mha
password=mha
ping_interval=2
repl_password=123456
repl_user=rep
ssh_user=root

[server1]
hostname=10.0.0.12 #当c7m01上的主库宕机之后,MHA会自动检查,发现主库mysql停机,IP会发生漂移
port=3306

[server2]
hostname=10.0.0.13
port=3306
[server3]
hostname=10.0.0.14
port=3306
ignore_fail=1
no_master=1

candidate_master=1

check_repl_delay=0

当c7m01上的主库宕机之后,MHA会自动检车,发现主库mysql停机,立刻会把从库提升为主库,然后另一台服务器会把

mysql主从复制的master_host改为新提升的主库。

5.MHA故障还原

  提示:1.现在c703查看  2.还原mastes_host 账户信息

[root@c703 ~]# grep “CHANGE MASTER TO MASTER” /var/log/mha/app1/manager.log | tail -1
Fri Feb 14 01:25:18 2020 – [info] All other slaves should start replication from here. Statement should be: CHANGE MASTER TO MASTER_HOST=’192.168.2.56′, MASTER_PORT=3306, MASTER_AUTO_POSITION=1, MASTER_USER=’rep’, MASTER_PASSWORD=’xxx’;

6.故障还原操作

  提示:在c7m01执行,故障还原 或者在本机57(主从)上执行也行更改。master_host

mysql -uroot -p123456 -e “CHANGE MASTER TO MASTER_HOST=’192.168.2.57′,MASTER_PORT=3306, MASTER_AUTO_POSITION=1,MASTER_USER=’rep’,MASTER_PASSWORD=’123456′;”

借鉴参考:MHA故障处理

7.重新启动MHA

[root@ c703 ~]# nohup masterha_manager –con=/etc/mha/app1.cnf –remove_dead_master_conf –ignore_last_failover < /dev/null > /var/log/mha/app1/manager.log 2>&1 &
[1] 6041
配置vip漂移,有俩种方式
第一种是keepalived的方式,管理虚拟ip的漂移
第二种是MHA自带脚本的方式,管理虚拟ip的漂移(这个漂移就是那个服务器的mysql库提升为主库,就漂移到那个上面,要根据binlog的最新slave方式提升)

8.MHA脚本方式

a.修改app1配置文件、添加

[root@ c703 ~]# vi /etc/mha/app1.cnf
[server default]
master_ip_failover_script=/usr/bin/master_ip_failover #添加这一行
b.编写脚本

[root@ c703 ~]# vim /usr/bin/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 = ‘192.168.2.59 /24’; #这里的vip地址写一个与自己IP地址相同的IP段
my $key = ‘1’;
my $ssh_start_vip = “/sbin/ifconfig ens33:$key $vip”; #这里的网卡要看自己外网的外卡是不是ens33,不是的话要改成自己的外网网卡
my $ssh_stop_vip = “/sbin/ifconfig ens33:$key down”;
GetOptions(
‘command=s’ => $command,
‘ssh_user=s’ => $ssh_user,
‘orig_master_host=s’ => $orig_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”;
}

c.master_ip_failover_script问题终极解决方案

VIP漂移解决方案

9给脚本加权限(后面这些参考资料:脚本配置)

[root@ c703 ~]# chmod +x /usr/bin/master_ip_failover

10.手动添加vip,绑定到主库的机子上,我这里是192.168.2.57

[root@ c702 ~]# ifconfig ens33:1 192.168.2.59/24
[root@ c702 ~]# ip a show ens33

11、重启MHA

[root@ c703 ~]# masterha_stop –con=/etc/mha/app1.cnf
Stopped app1 successfully.
[root@ c703 ~]# nohup masterha_manager –con=/etc/mha/app1.cnf –remove_dead_master_conf –ignore_last_failover < /dev/null > /var/log/mha/app1/manager.log 2>&1 &
[1] 6468

十二、模拟主库宕机vip飘移

断开某个服务器
在c702上操作

[root@ c702 ~]# systemctl stop mysql
[root@ c702 ~]# ip a show ens33

这个时候vip已经漂移到另一台服务器上,将另一台服务器做为主库
查看c7m01上是否有vip漂移

[root@ c7m01 ~]# ip a show ens33

当vip漂移到另一台服务器上表示成功,然后查看MHA的服务器上是否改变到另一台服务器上的master_host

[root@ c703 ~]# mysql -uroot -p123456 -e ‘show slave status\G’;

[root@ c703 ~]# cat /etc/mha/app1.cnf
[server default]
manager_log=/var/log/mha/app1/manager.log
manager_workdir=/var/log/mha/app1
master_binlog_dir=/var/lib/mysql
master_ip_failover_script=/usr/bin/master_ip_failover
password=mha
ping_interval=2
repl_password=123456
repl_user=rep
ssh_user=root
user=mha

[server1]
hostname=10.0.0.12
port=3306

[server3]
hostname=10.0.0.14
ignore_fail=1
no_master=1
port=3306

这个时候开始修复,手动操作,将他恢复到之前的状态

[root@ c703 ~]# grep “CHANGE MASTER TO MASTER” /var/log/mha/app1/manager.log | tail -1
[root@c702 ~]#systemctl restart mysql
[root@c702 ~]# mysql -uroot -p123456 -e “CHANGE MASTER TO MASTER_HOST=’10.0.0.12′,MASTER_PORT=3306, MASTER_AUTO_POSITION=1,MASTER_USER=’rep’,MASTER_PASSWORD=’123456′;”
[root@c702 ~]# mysql -uroot -p123456 -e “start slave;”

[root@c702 ~]# mysql -uroot -p123456 -e “show slave status \G”

重启MHA

nohup masterha_manager –con=/etc/mha/app1.cnf –remove_dead_master_conf –ignore_last_failover < /dev/null > /var/log/mha/app1/manager.log 2>&1 &

备注:

1.前部分MySql主从备份,以我的步骤为准,MHA布置已博文链接为主。
2.MHA高可用配置及故障切换——详细部署步骤及报错解决办法
3.参考参考脚本配置://www.cnblogs.com/chendian0/archive/2004/01/13/13993256.html
4.主从备份失误已经全部绕开(包括版本错误)
5.欢迎交流沟通