MySQL高可用架构之MHA
简介:
MHA(Master High Availability)目前在MySQL高可用方面是一个相对成熟的解决方案,它由日本DeNA公司youshimaton(现就职于Facebook公司)开发,是一套优秀的作为MySQL高可用性环境下故障切换和主从提升的高可用软件。在MySQL故障切换过程中,MHA能做到在0~30秒之内自动完成数据库的故障切换操作,并且在进行故障切换的过程中,MHA能在最大程度上保证数据的一致性,以达到真正意义上的高可用。
该软件由两部分组成:MHA Manager(管理节点)和MHA Node(数据节点)。MHA Manager可以单独部署在一台独立的机器上管理多个master-slave集群,也可以部署在一台slave节点上。MHA Node运行在每台MySQL服务器上,MHA Manager会定时探测集群中的master节点,当master出现故障时,它可以自动将最新数据的slave提升为新的master,然后将所有其他的slave重新指向新的master。整个故障转移过程对应用程序完全透明。
在MHA自动故障切换过程中,MHA试图从宕机的主服务器上保存二进制日志,最大程度的保证数据的不丢失,但这并不总是可行的。例如,如果主服务器硬件故障或无法通过ssh访问,MHA没法保存二进制日志,只进行故障转移而丢失了最新的数据。使用MySQL 5.5的半同步复制,可以大大降低数据丢失的风险。MHA可以与半同步复制结合起来。如果只有一个slave已经收到了最新的二进制日志,MHA可以将最新的二进制日志应用于其他所有的slave服务器上,因此可以保证所有节点的数据一致性。
目前MHA主要支持一主多从的架构,要搭建MHA,要求一个复制集群中必须最少有三台数据库服务器,一主二从,即一台充当master,一台充当备用master,另外一台充当从库,因为至少需要三台服务器,出于机器成本的考虑,淘宝也在该基础上进行了改造,目前淘宝TMHA已经支持一主一从。另外对于想快速搭建的可以参考:MHA快速搭建
我们自己使用其实也可以使用1主1从,但是master主机宕机后无法切换,以及无法补全binlog。master的mysqld进程crash后,还是可以切换成功,以及补全binlog的。
官方介绍:https://code.google.com/p/mysql-master-ha/
图01展示了如何通过MHA Manager管理多组主从复制。可以将MHA工作原理总结为如下:
( 图01 )
(1)从宕机崩溃的master保存二进制日志事件(binlog events);
(2)识别含有最新更新的slave;
(3)应用差异的中继日志(relay log)到其他的slave;
(4)应用从master保存的二进制日志事件(binlog events);
(5)提升一个slave为新的master;
(6)使其他的slave连接新的master进行复制;
MHA软件由两部分组成,Manager工具包和Node工具包,具体的说明如下。
Manager工具包主要包括以下几个工具:
- masterha_check_ssh 检查MHA的SSH配置状况
- masterha_check_repl 检查MySQL复制状况
- masterha_manger 启动MHA
- masterha_check_status 检测当前MHA运行状态
- masterha_master_monitor 检测master是否宕机
- masterha_master_switch 控制故障转移(自动或者手动)
- masterha_conf_host 添加或删除配置的server信息
Node工具包(这些工具通常由MHA Manager的脚本触发,无需人为操作)主要包括以下几个工具:
- save_binary_logs 保存和复制master的二进制日志
- apply_diff_relay_logs 识别差异的中继日志事件并将其差异的事件应用于其他的slave
- filter_mysqlbinlog 去除不必要的ROLLBACK事件(MHA已不再使用这个工具)
- purge_relay_logs 清除中继日志(不会阻塞SQL线程)
注意:
为了尽可能的减少主库硬件损坏宕机造成的数据丢失,因此在配置MHA的同时建议配置成MySQL 5.5的半同步复制。关于半同步复制原理各位自己进行查阅。(不是必须)
1.部署MHA
接下来部署MHA,具体的搭建环境如下(所有操作系统均为centos 6.2 64bit,不是必须,server03和server04是server02的从,复制环境搭建后面会简单演示,但是相关的安全复制不会详细说明,需要的童鞋请参考前面的文章,MySQL Replication需要注意的问题):
- 角色 ip地址 主机名 server_id 类型
- Monitor host 192.168.0.20 server01 - 监控复制组
- Master 192.168.0.50 server02 写入
- Candicate master 192.168.0.60 server03 读
- Slave 192.168.0.70 server04 读
其中master对外提供写服务,备选master(实际的slave,主机名server03)提供读服务,slave也提供相关的读服务,一旦master宕机,将会把备选master提升为新的master,slave指向新的master
(1)在所有节点安装MHA node所需的perl模块(DBD:mysql),安装脚本如下:
- [root@192.168.0.50 ~]# cat install.sh
- #!/bin/bash
- wget http://xrl.us/cpanm --no-check-certificate
- mv cpanm /usr/bin
- chmod /usr/bin/cpanm
- cat > /root/list << EOF
- install DBD::mysql
- EOF
- for package in `cat /root/list`
- do
- cpanm $package
- done
- [root@192.168.0.50 ~]#
如果有安装epel源,也可以使用yum安装
- yum install perl-DBD-MySQL -y
(2)在所有的节点安装mha node:
- wget http://mysql-master-ha.googlecode.com/files/mha4mysql-node-0.53.tar.gz
- tar xf mha4mysql-node-0.53.tar.gz
- cd mha4mysql-node-0.53
- perl Makefile.PL
- make && make install
安装完成后会在/usr/local/bin目录下生成以下脚本文件:
- [root@192.168.0.50 bin]# pwd
- /usr/local/bin
- [root@192.168.0.50 bin]# ll
- total
- -r-xr-xr-x root root Apr : apply_diff_relay_logs
- -r-xr-xr-x root root Apr : filter_mysqlbinlog
- -r-xr-xr-x root root Apr : purge_relay_logs
- -r-xr-xr-x root root Apr : save_binary_logs
- [root@192.168.0.50 bin]#
关于上面脚本的功能,上面已经介绍过了,这里不再重复了。
2.安装MHA Manager
MHA Manager中主要包括了几个管理员的命令行工具,例如master_manger,master_master_switch等。MHA Manger也依赖于perl模块,具体如下:
(1)安装MHA Node软件包之前需要安装依赖。我这里使用yum完成,没有epel源的可以使用上面提到的脚本(epel源安装也简单)。注意:在MHA Manager的主机也是需要安装MHA Node。
- rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
- yum install perl-DBD-MySQL -y
安装MHA Node软件包,和上面的方法一样,如下:
- wget http://mysql-master-ha.googlecode.com/files/mha4mysql-node-0.53.tar.gz
- tar xf mha4mysql-node-0.53.tar.gz
- cd mha4mysql-node-0.53
- perl Makefile.PL
- make && make install
(2)安装MHA Manager。首先安装MHA Manger依赖的perl模块(我这里使用yum安装):
- yum install perl-DBD-MySQL perl-Config-Tiny perl-Log-Dispatch perl-Parallel-ForkManager perl-Time-HiRes -y
安装MHA Manager软件包:
- wget http://mysql-master-ha.googlecode.com/files/mha4mysql-manager-0.53.tar.gz
- tar xf mha4mysql-manager-0.53.tar.gz
- cd mha4mysql-manager-0.53
- perl Makefile.PL
- make && make install
安装完成后会在/usr/local/bin目录下面生成以下脚本文件,前面已经说过这些脚本的作用,这里不再重复
- [root@192.168.0.20 bin]# pwd
- /usr/local/bin
- [root@192.168.0.20 bin]# ll
- total
- -r-xr-xr-x root root Apr : apply_diff_relay_logs
- -r-xr-xr-x root root Apr : filter_mysqlbinlog
- -r-xr-xr-x root root Apr : masterha_check_repl
- -r-xr-xr-x root root Apr : masterha_check_ssh
- -r-xr-xr-x root root Apr : masterha_check_status
- -r-xr-xr-x root root Apr : masterha_conf_host
- -r-xr-xr-x root root Apr : masterha_manager
- -r-xr-xr-x root root Apr : masterha_master_monitor
- -r-xr-xr-x root root Apr : masterha_master_switch
- -r-xr-xr-x root root Apr : masterha_secondary_check
- -r-xr-xr-x root root Apr : masterha_stop
- -r-xr-xr-x root root Apr : purge_relay_logs
- -r-xr-xr-x root root Apr : save_binary_logs
- [root@192.168.0.20 bin]#
复制相关脚本到/usr/local/bin目录(软件包解压缩后就有了,不是必须,因为这些脚本不完整,需要自己修改,这是软件开发着留给我们自己发挥的,如果开启下面的任何一个脚本对应的参数,而对应这里的脚本又没有修改,则会抛错,自己被坑的很惨)
- [root@192.168.0.20 scripts]# pwd
- /root/mha4mysql-manager-0.53/samples/scripts
- [root@192.168.0.20 scripts]# ll
- total
- -rwxr-xr-x root root Jan master_ip_failover #自动切换时vip管理的脚本,不是必须,如果我们使用keepalived的,我们可以自己编写脚本完成对vip的管理,比如监控mysql,如果mysql异常,我们停止keepalived就行,这样vip就会自动漂移
- -rwxr-xr-x root root Jan master_ip_online_change #在线切换时vip的管理,不是必须,同样可以可以自行编写简单的shell完成
- -rwxr-xr-x root root Jan power_manager #故障发生后关闭主机的脚本,不是必须
- -rwxr-xr-x root root Jan send_report #因故障切换后发送报警的脚本,不是必须,可自行编写简单的shell完成。
- [root@192.168.0.20 scripts]# cp * /usr/local/bin/
- [root@192.168.0.20 scripts]#
3.配置SSH登录无密码验证(使用key登录,工作中常用)我的测试环境已经是使用key登录,服务器之间无需密码验证的。关于配置使用key登录,我想我不再重复。但是有一点需要注意:不能禁止 password 登陆,否则会出现错误
4.搭建主从复制环境
注意:binlog-do-db 和 replicate-ignore-db 设置必须相同。 MHA 在启动时候会检测过滤规则,如果过滤规则不同,MHA 不启动监控和故障转移。
(1)在server02上执行备份(192.168.0.50)
- [root@192.168.0.50 ~]# mysqldump --master-data= --single-transaction -R --triggers -A > all.sql
其中--master-data=2代表备份时刻记录master的Binlog位置和Position,--single-transaction意思是获取一致性快照,-R意思是备份存储过程和函数,--triggres的意思是备份触发器,-A代表备份所有的库。更多信息请自行mysqldump --help查看。
(2)在server02上创建复制用户:
- mysql> grant replication slave on *.* to 'repl'@'192.168.0.%' identified by '';
- Query OK, 0 rows affected (0.00 sec)
- mysql> flush privileges;
- Query OK, 0 rows affected (0.00 sec)
- mysql>
(3)查看主库备份时的binlog名称和位置,MASTER_LOG_FILE和MASTER_LOG_POS:
- [root@192.168.0.50 ~]# head -n all.sql | grep 'CHANGE MASTER TO'
- -- CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.000010', MASTER_LOG_POS=;
- [root@192.168.0.50 ~]#
(4)把备份复制到server03和server04,也就是192.168.0.60和192.168.0.70
- scp all.sql server03:/data/
- scp all.sql server04:/data/
(5)导入备份到server03,执行复制相关命令
- mysql < /data/all.sql
- mysql> CHANGE MASTER TO MASTER_HOST='192.168.0.50',MASTER_USER='repl', MASTER_PASSWORD='',MASTER_LOG_FILE='mysql-bin.000010',MASTER_LOG_POS=112;
- Query OK, 0 rows affected (0.02 sec)
- mysql> start slave;
- Query OK, 0 rows affected (0.01 sec)
- mysql>
查看复制状态(可以看见复制成功):
- [root@192.168.0.60 ~]# mysql -e 'show slave status\G' | egrep 'Slave_IO|Slave_SQL'
- Slave_IO_State: Waiting for master to send event
- Slave_IO_Running: Yes
- Slave_SQL_Running: Yes
- [root@192.168.0.60 ~]#
(6)在server04(192.168.0.70)上搭建复制环境,操作和上面一样。
- mysql < /data/all.sql
- mysql> CHANGE MASTER TO MASTER_HOST='192.168.0.50',MASTER_USER='repl', MASTER_PASSWORD='',MASTER_LOG_FILE='mysql-bin.000010',MASTER_LOG_POS=112;
- Query OK, 0 rows affected (0.07 sec)
- mysql> start slave;
- Query OK, 0 rows affected (0.00 sec)
- mysql>
查看复制状态:
- [root@192.168.0.70 ~]# mysql -e 'show slave status\G' | egrep 'Slave_IO|Slave_SQL'
- Slave_IO_State: Waiting for master to send event
- Slave_IO_Running: Yes
- Slave_SQL_Running: Yes
- [root@192.168.0.70 ~]#
(7)两台slave服务器设置read_only(从库对外提供读服务,只所以没有写进配置文件,是因为随时slave会提升为master)
- [root@192.168.0.60 ~]# mysql -e 'set global read_only=1'
- [root@192.168.0.60 ~]#
- [root@192.168.0.70 ~]# mysql -e 'set global read_only=1'
- [root@192.168.0.70 ~]#
(8)创建监控用户(在master上执行,也就是192.168.0.50):
- mysql> grant all privileges on *.* to 'root'@'192.168.0.%' identified by '';
- Query OK, 0 rows affected (0.00 sec)
- mysql> flush privileges;
- Query OK, 0 rows affected (0.01 sec)
- mysql>
到这里整个集群环境已经搭建完毕,剩下的就是配置MHA软件了。
5.配置MHA
(1)创建MHA的工作目录,并且创建相关配置文件(在软件包解压后的目录里面有样例配置文件)。
- [root@192.168.0.20 ~]# mkdir -p /etc/masterha
- [root@192.168.0.20 ~]# cp mha4mysql-manager-0.53/samples/conf/app1.cnf /etc/masterha/
- [root@192.168.0.20 ~]#
修改app1.cnf配置文件,修改后的文件内容如下(注意,配置文件中的注释需要去掉,我这里是为了解释清楚):
- [root@192.168.0.20 ~]# cat /etc/masterha/app1.cnf
- [server default]
- manager_workdir=/var/log/masterha/app1.log //设置manager的工作目录
- manager_log=/var/log/masterha/app1/manager.log //设置manager的日志
- master_binlog_dir=/data/mysql //设置master 保存binlog的位置,以便MHA可以找到master的日志,我这里的也就是mysql的数据目录
- master_ip_failover_script= /usr/local/bin/master_ip_failover //设置自动failover时候的切换脚本
- master_ip_online_change_script= /usr/local/bin/master_ip_online_change //设置手动切换时候的切换脚本
- password= //设置mysql中root用户的密码,这个密码是前文中创建监控用户的那个密码
- user=root 设置监控用户root
- ping_interval= //设置监控主库,发送ping包的时间间隔,默认是3秒,尝试三次没有回应的时候自动进行railover
- remote_workdir=/tmp //设置远端mysql在发生切换时binlog的保存位置
- repl_password= //设置复制用户的密码
- repl_user=repl //设置复制环境中的复制用户名
- report_script=/usr/local/send_report //设置发生切换后发送的报警的脚本
- secondary_check_script= /usr/local/bin/masterha_secondary_check -s server03 -s server02
shutdown_script="" //设置故障发生后关闭故障主机脚本(该脚本的主要作用是关闭主机放在发生脑裂,这里没有使用)- ssh_user=root //设置ssh的登录用户名
- [server1]
- hostname=192.168.0.50
- port=
- [server2]
- hostname=192.168.0.60
- port=
- candidate_master= //设置为候选master,如果设置该参数以后,发生主从切换以后将会将此从库提升为主库,即使这个主库不是集群中事件最新的slave
- check_repl_delay= //默认情况下如果一个slave落后master 100M的relay logs的话,MHA将不会选择该slave作为一个新的master,因为对于这个slave的恢复需要花费很长时间,通过设置check_repl_delay=0,MHA触发切换在选择一个新的master的时候将会忽略复制延时,这个参数对于设置了candidate_master=1的主机非常有用,因为这个候选主在切换的过程中一定是新的master
- [server3]
- hostname=192.168.0.70
- port=
- [root@192.168.0.20 ~]#
(2)设置relay log的清除方式(在每个slave节点上):
- [root@192.168.0.60 ~]# mysql -e 'set global relay_log_purge=0'
- [root@192.168.0.70 ~]# mysql -e 'set global relay_log_purge=0'
注意:
MHA在发生切换的过程中,从库的恢复过程中依赖于relay log的相关信息,所以这里要将relay log的自动清除设置为OFF,采用手动清除relay log的方式。在默认情况下,从服务器上的中继日志会在SQL线程执行完毕后被自动删除。但是在MHA环境中,这些中继日志在恢复其他从服务器时可能会被用到,因此需要禁用中继日志的自动删除功能。定期清除中继日志需要考虑到复制延时的问题。在ext3的文件系统下,删除大的文件需要一定的时间,会导致严重的复制延时。为了避免复制延时,需要暂时为中继日志创建硬链接,因为在linux系统中通过硬链接删除大文件速度会很快。(在mysql数据库中,删除大表时,通常也采用建立硬链接的方式)
MHA节点中包含了pure_relay_logs命令工具,它可以为中继日志创建硬链接,执行SET GLOBAL relay_log_purge=1,等待几秒钟以便SQL线程切换到新的中继日志,再执行SET GLOBAL relay_log_purge=0。
pure_relay_logs脚本参数如下所示:
- --user mysql 用户名
- --password mysql 密码
- --port 端口号
- --workdir 指定创建relay log的硬链接的位置,默认是/var/tmp,由于系统不同分区创建硬链接文件会失败,故需要执行硬链接具体位置,成功执行脚本后,硬链接的中继日志文件被删除
- --disable_relay_log_purge 默认情况下,如果relay_log_purge=,脚本会什么都不清理,自动退出,通过设定这个参数,当relay_log_purge=1的情况下会将relay_log_purge设置为0。清理relay log之后,最后将参数设置为OFF。
(3)设置定期清理relay脚本(两台slave服务器)
- [root@192.168.0.60 ~]# cat purge_relay_log.sh
- #!/bin/bash
- user=root
- passwd=
- port=
- log_dir='/data/masterha/log'
- work_dir='/data'
- purge='/usr/local/bin/purge_relay_logs'
- if [ ! -d $log_dir ]
- then
- mkdir $log_dir -p
- fi
- $purge --user=$user --password=$passwd --disable_relay_log_purge --port=$port --workdir=$work_dir >> $log_dir/purge_relay_logs.log >&
- [root@192.168.0.60 ~]#
添加到crontab定期执行
- [root@192.168.0.60 ~]# crontab -l
- * * * /bin/bash /root/purge_relay_log.sh
- [root@192.168.0.60 ~]#
purge_relay_logs脚本删除中继日志不会阻塞SQL线程。下面我们手动执行看看什么情况。
- [root@192.168.0.60 ~]# purge_relay_logs --user=root --password= --port= -disable_relay_log_purge --workdir=/data/
- -- ::: purge_relay_logs script started.
- Found relay_log.info: /data/mysql/relay-log.info
- Removing hard linked relay log files server03-relay-bin* under /data/.. done.
- Current relay log file: /data/mysql/server03-relay-bin.
- Archiving unused relay log files (up to /data/mysql/server03-relay-bin.) ...
- Creating hard link for /data/mysql/server03-relay-bin. under /data//server03-relay-bin.000001 .. ok.
- Creating hard links for unused relay log files completed.
- Executing SET GLOBAL relay_log_purge=; FLUSH LOGS; sleeping a few seconds so that SQL thread can delete older relay log files (if it keeps up); SET GLOBAL relay_log_purge=; .. ok.
- Removing hard linked relay log files server03-relay-bin* under /data/.. done.
- -- ::: All relay log purging operations succeeded.
- [root@192.168.0.60 ~]#
6.检查SSH配置
检查MHA Manger到所有MHA Node的SSH连接状态:
- [root@192.168.0.20 ~]# masterha_check_ssh --conf=/etc/masterha/app1.cnf
- Sun Apr :: - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping.
- Sun Apr :: - [info] Reading application default configurations from /etc/masterha/app1.cnf..
- Sun Apr :: - [info] Reading server configurations from /etc/masterha/app1.cnf..
- Sun Apr :: - [info] Starting SSH connection tests..
- Sun Apr :: - [debug]
- Sun Apr :: - [debug] Connecting via SSH from root@192.168.0.50(192.168.0.50:) to root@192.168.0.60(192.168.0.60:)..
- Sun Apr :: - [debug] ok.
- Sun Apr :: - [debug] Connecting via SSH from root@192.168.0.50(192.168.0.50:) to root@192.168.0.70(192.168.0.70:)..
- Sun Apr :: - [debug] ok.
- Sun Apr :: - [debug]
- Sun Apr :: - [debug] Connecting via SSH from root@192.168.0.60(192.168.0.60:) to root@192.168.0.50(192.168.0.50:)..
- Sun Apr :: - [debug] ok.
- Sun Apr :: - [debug] Connecting via SSH from root@192.168.0.60(192.168.0.60:) to root@192.168.0.70(192.168.0.70:)..
- Sun Apr :: - [debug] ok.
- Sun Apr :: - [debug]
- Sun Apr :: - [debug] Connecting via SSH from root@192.168.0.70(192.168.0.70:) to root@192.168.0.50(192.168.0.50:)..
- Sun Apr :: - [debug] ok.
- Sun Apr :: - [debug] Connecting via SSH from root@192.168.0.70(192.168.0.70:) to root@192.168.0.60(192.168.0.60:)..
- Sun Apr :: - [debug] ok.
- Sun Apr :: - [info] All SSH connection tests passed successfully.
可以看见各个节点ssh验证都是ok的。
7.检查整个复制环境状况。
通过masterha_check_repl脚本查看整个集群的状态
- [root@192.168.0.20 ~]# masterha_check_repl --conf=/etc/masterha/app1.cnf
- Sun Apr :: - [info] Checking replication health on 192.168.0.60..
- Sun Apr :: - [info] ok.
- Sun Apr :: - [info] Checking replication health on 192.168.0.70..
- Sun Apr :: - [info] ok.
- Sun Apr :: - [info] Checking master_ip_failover_script status:
- Sun Apr :: - [info] /usr/local/bin/master_ip_failover --command=status --ssh_user=root --orig_master_host=192.168.0.50 --orig_master_ip=192.168.0.50 --orig_master_port=
- Bareword "FIXME_xxx" not allowed while "strict subs" in use at /usr/local/bin/master_ip_failover line .
- Execution of /usr/local/bin/master_ip_failover aborted due to compilation errors.
- Sun Apr :: - [error][/usr/local/share/perl5/MHA/MasterMonitor.pm, ln214] Failed to get master_ip_failover_script status with return code :.
- Sun Apr :: - [error][/usr/local/share/perl5/MHA/MasterMonitor.pm, ln383] Error happend on checking configurations. at /usr/local/bin/masterha_check_repl line
- Sun Apr :: - [error][/usr/local/share/perl5/MHA/MasterMonitor.pm, ln478] Error happened on monitoring servers.
- Sun Apr :: - [info] Got exit code (Not master dead).
- MySQL Replication Health is NOT OK!
发现最后的结论说我的复制不是ok的。但是上面的信息明明说是正常的,自己也进数据库查看了。这里一直踩坑。一直纠结,后来无意中发现火丁笔记的博客,这才知道了原因,原来Failover两种方式:一种是虚拟IP地址,一种是全局配置文件。MHA并没有限定使用哪一种方式,而是让用户自己选择,虚拟IP地址的方式会牵扯到其它的软件,比如keepalive软件,而且还要修改脚本master_ip_failover。(最后修改脚本后才没有这个报错,自己不懂perl也是折腾的半死,去年买了块表)
如果发现如下错误:
- Can't exec "mysqlbinlog": No such file or directory at /usr/local/share/perl5/MHA/BinlogManager.pm line 99.
- mysqlbinlog version not found!
- Testing mysql connection and privileges..sh: mysql: command not found
解决方法如下,添加软连接(所有节点)
- ln -s /usr/local/mysql/bin/mysqlbinlog /usr/local/bin/mysqlbinlog
- ln -s /usr/local/mysql/bin/mysql /usr/local/bin/mysql
所以先暂时注释master_ip_failover_script= /usr/local/bin/master_ip_failover这个选项。后面引入keepalived后和修改该脚本以后再开启该选项。
- [root@192.168.0.20 ~]# grep master_ip_failover /etc/masterha/app1.cnf
- #master_ip_failover_script= /usr/local/bin/master_ip_failover
- [root@192.168.0.20 ~]#
再次进行状态查看:
- Sun Apr :: - [info] Checking replication health on 192.168.0.60..
- Sun Apr :: - [info] ok.
- Sun Apr :: - [info] Checking replication health on 192.168.0.70..
- Sun Apr :: - [info] ok.
- Sun Apr :: - [warning] master_ip_failover_script is not defined.
- Sun Apr :: - [warning] shutdown_script is not defined.
- Sun Apr :: - [info] Got exit code (Not master dead).
- MySQL Replication Health is OK.
已经没有明显报错,只有两个警告而已,复制也显示正常了。
8.检查MHA Manager的状态:
通过master_check_status脚本查看Manager的状态:
- [root@192.168.0.20 ~]# masterha_check_status --conf=/etc/masterha/app1.cnf
- app1 is stopped(:NOT_RUNNING).
- [root@192.168.0.20 ~]#
注意:如果正常,会显示"PING_OK",否则会显示"NOT_RUNNING",这代表MHA监控没有开启。
9.开启MHA Manager监控
- [root@192.168.0.20 ~]# nohup masterha_manager --conf=/etc/masterha/app1.cnf --remove_dead_master_conf --ignore_last_failover < /dev/null > /var/log/masterha/app1/manager.log >& &
- []
- [root@192.168.0.20 ~]#
启动参数介绍:
--remove_dead_master_conf 该参数代表当发生主从切换后,老的主库的ip将会从配置文件中移除。
--manger_log 日志存放位置
--ignore_last_failover 在缺省情况下,如果MHA检测到连续发生宕机,且两次宕机间隔不足8小时的话,则不会进行Failover,之所以这样限制是为了避免ping-pong效应。该参数代表忽略上次MHA触发切换产生的文件,默认情况下,MHA发生切换后会在日志目录,也就是上面我设置的/data产生app1.failover.complete文件,下次再次切换的时候如果发现该目录下存在该文件将不允许触发切换,除非在第一次切换后收到删除该文件,为了方便,这里设置为--ignore_last_failover。
查看MHA Manager监控是否正常:
- [root@192.168.0.20 ~]# masterha_check_status --conf=/etc/masterha/app1.cnf
- app1 (pid:) is running(:PING_OK), master:192.168.0.50
- [root@192.168.0.20 ~]#
可以看见已经在监控了,而且master的主机为192.168.0.50
10.查看启动日志
- [root@192.168.0.20 ~]# tail -n20 /var/log/masterha/app1/manager.log
- Sun Apr :: - [info] Connecting to root@192.168.0.70(192.168.0.70:)..
- Checking slave recovery environment settings..
- Opening /data/mysql/relay-log.info ... ok.
- Relay log found at /data/mysql, up to server04-relay-bin.
- Temporary relay log file is /data/mysql/server04-relay-bin.
- Testing mysql connection and privileges.. done.
- Testing mysqlbinlog output.. done.
- Cleaning up test file(s).. done.
- Sun Apr :: - [info] Slaves settings check done.
- Sun Apr :: - [info]
- 192.168.0.50 (current master)
- +--192.168.0.60
- +--192.168.0.70
- Sun Apr :: - [warning] master_ip_failover_script is not defined.
- Sun Apr :: - [warning] shutdown_script is not defined.
- Sun Apr :: - [info] Set master ping interval seconds.
- Sun Apr :: - [info] Set secondary check script: /usr/local/bin/masterha_secondary_check -s server03 -s server02 --user=root --master_host=server02 --master_ip=192.168.0.50 --master_port=
- Sun Apr :: - [info] Starting ping health check on 192.168.0.50(192.168.0.50:)..
- Sun Apr :: - [info] Ping(SELECT) succeeded, waiting until MySQL doesn't respond..
- [root@192.168.0.20 ~]#
其中"Ping(SELECT) succeeded, waiting until MySQL doesn't respond.."说明整个系统已经开始监控了。
11.关闭MHA Manage监控
关闭很简单,使用masterha_stop命令完成。
- [root@192.168.0.20 ~]# masterha_stop --conf=/etc/masterha/app1.cnf
- Stopped app1 successfully.
- []+ Exit nohup masterha_manager --conf=/etc/masterha/app1.cnf --remove_dead_master_conf --ignore_last_failover --manager_log=/data/mamanager.log
- [root@192.168.0.20 ~]#
12.配置VIP
vip配置可以采用两种方式,一种通过keepalived的方式管理虚拟ip的浮动;另外一种通过脚本方式启动虚拟ip的方式(即不需要keepalived或者heartbeat类似的软件)。
1.keepalived方式管理虚拟ip,keepalived配置方法如下:
(1)下载软件进行并进行安装(两台master,准确的说一台是master,另外一台是备选master,在没有切换以前是slave):
- [root@192.168.0.50 ~]# wget http://www.keepalived.org/software/keepalived-1.2.12.tar.gz
- tar xf keepalived-1.2..tar.gz
- cd keepalived-1.2.
- ./configure --prefix=/usr/local/keepalived
- make && make install
- cp /usr/local/keepalived/etc/rc.d/init.d/keepalived /etc/init.d/
- cp /usr/local/keepalived/etc/sysconfig/keepalived /etc/sysconfig/
- mkdir /etc/keepalived
- cp /usr/local/keepalived/etc/keepalived/keepalived.conf /etc/keepalived/
- cp /usr/local/keepalived/sbin/keepalived /usr/sbin/
(2)配置keepalived的配置文件,在master上配置(192.168.0.50)
- [root@192.168.0.50 ~]# cat /etc/keepalived/keepalived.conf
- ! Configuration File for keepalived
- global_defs {
- notification_email {
- saltstack@.com
- }
- notification_email_from dba@dbserver.com
- smtp_server 127.0.0.1
- smtp_connect_timeout
- router_id MySQL-HA
- }
- vrrp_instance VI_1 {
- state BACKUP
- interface eth1
- virtual_router_id
- priority
- advert_int
- nopreempt
- authentication {
- auth_type PASS
- auth_pass
- }
- virtual_ipaddress {
- 192.168.0.88
- }
- }
- [root@192.168.0.50 ~]#
其中router_id MySQL HA表示设定keepalived组的名称,将192.168.0.88这个虚拟ip绑定到该主机的eth1网卡上,并且设置了状态为backup模式,将keepalived的模式设置为非抢占模式(nopreempt),priority 150表示设置的优先级为150。下面的配置略有不同,但是都是一个意思。
在候选master上配置(192.168.0.60)
- [root@192.168.0.60 ~]# cat /etc/keepalived/keepalived.conf
- ! Configuration File for keepalived
- global_defs {
- notification_email {
- saltstack@.com
- }
- notification_email_from dba@dbserver.com
- smtp_server 127.0.0.1
- smtp_connect_timeout
- router_id MySQL-HA
- }
- vrrp_instance VI_1 {
- state BACKUP
- interface eth1
- virtual_router_id
- priority
- advert_int
- nopreempt
- authentication {
- auth_type PASS
- auth_pass
- }
- virtual_ipaddress {
- 192.168.0.88
- }
- }
- [root@192.168.0.60 ~]#
(3)启动keepalived服务,在master上启动并查看日志
- [root@192.168.0.50 ~]# /etc/init.d/keepalived start
- Starting keepalived: [ OK ]
- [root@192.168.0.50 ~]# tail -f /var/log/messages
- Apr :: Keepalived_healthcheckers[]: Opening file '/etc/keepalived/keepalived.conf'.
- Apr :: Keepalived_healthcheckers[]: Configuration is using : Bytes
- Apr :: kernel: IPVS: Connection hash table configured (size=, memory=64Kbytes)
- Apr :: kernel: IPVS: ipvs loaded.
- Apr :: Keepalived_healthcheckers[]: Using LinkWatch kernel netlink reflector...
- Apr :: Keepalived_vrrp[]: VRRP_Instance(VI_1) Transition to MASTER STATE
- Apr :: Keepalived_vrrp[]: VRRP_Instance(VI_1) Entering MASTER STATE
- Apr :: Keepalived_vrrp[]: VRRP_Instance(VI_1) setting protocol VIPs.
- Apr :: Keepalived_vrrp[]: VRRP_Instance(VI_1) Sending gratuitous ARPs on eth1 for 192.168.0.88
- Apr :: Keepalived_healthcheckers[]: Netlink reflector reports IP 192.168.0.88 added
- Apr :: Keepalived_vrrp[]: VRRP_Instance(VI_1) Sending gratuitous ARPs on eth1 for 192.168.0.88
发现已经将虚拟ip 192.168.0.88绑定了网卡eth1上。
(4)查看绑定情况
- [root@192.168.0.50 ~]# ip addr | grep eth1
- : eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu qdisc pfifo_fast state UP qlen
- inet 192.168.0.50/ brd 192.168.0.255 scope global eth1
- inet 192.168.0.88/ scope global eth1
- [root@192.168.0.50 ~]#
在另外一台服务器,候选master上启动keepalived服务,并观察
- [root@192.168.0.60 ~]# /etc/init.d/keepalived start ; tail -f /var/log/messages
- Starting keepalived: [ OK ]
- Apr :: Keepalived_vrrp[]: Registering gratuitous ARP shared channel
- Apr :: Keepalived_vrrp[]: Opening file '/etc/keepalived/keepalived.conf'.
- Apr :: Keepalived_vrrp[]: Configuration is using : Bytes
- Apr :: Keepalived_vrrp[]: Using LinkWatch kernel netlink reflector...
- Apr :: Keepalived_vrrp[]: VRRP_Instance(VI_1) Entering BACKUP STATE
- Apr :: Keepalived_vrrp[]: VRRP sockpool: [ifindex(), proto(), unicast(), fd(,)]
- Apr :: Keepalived_healthcheckers[]: Netlink reflector reports IP 192.168.80.138 added
- Apr :: Keepalived_healthcheckers[]: Netlink reflector reports IP 192.168.0.60 added
- Apr :: Keepalived_healthcheckers[]: Netlink reflector reports IP fe80::20c:29ff:fe9d:6a9e added
- Apr :: Keepalived_healthcheckers[]: Netlink reflector reports IP fe80::20c:29ff:fe9d:6aa8 added
- Apr :: Keepalived_healthcheckers[]: Registering Kernel netlink reflector
- Apr :: Keepalived_healthcheckers[]: Registering Kernel netlink command channel
- Apr :: Keepalived_healthcheckers[]: Opening file '/etc/keepalived/keepalived.conf'.
- Apr :: Keepalived_healthcheckers[]: Configuration is using : Bytes
- Apr :: kernel: IPVS: Registered protocols (TCP, UDP, AH, ESP)
- Apr :: kernel: IPVS: Connection hash table configured (size=, memory=64Kbytes)
- Apr :: kernel: IPVS: ipvs loaded.
- Apr :: Keepalived_healthcheckers[]: Using LinkWatch kernel netlink reflector...
从上面的信息可以看到keepalived已经配置成功。
注意:
上面两台服务器的keepalived都设置为了BACKUP模式,在keepalived中2种模式,分别是master->backup模式和backup->backup模式。这两种模式有很大区别。在master->backup模式下,一旦主库宕机,虚拟ip会自动漂移到从库,当主库修复后,keepalived启动后,还会把虚拟ip抢占过来,即使设置了非抢占模式(nopreempt)抢占ip的动作也会发生。在backup->backup模式下,当主库宕机后虚拟ip会自动漂移到从库上,当原主库恢复和keepalived服务启动后,并不会抢占新主的虚拟ip,即使是优先级高于从库的优先级别,也不会发生抢占。为了减少ip漂移次数,通常是把修复好的主库当做新的备库。
(5)MHA引入keepalived(MySQL服务进程挂掉时通过MHA 停止keepalived):
要想把keepalived服务引入MHA,我们只需要修改切换是触发的脚本文件master_ip_failover即可,在该脚本中添加在master发生宕机时对keepalived的处理。
编辑脚本/usr/local/bin/master_ip_failover,修改后如下,我对perl不熟悉,所以我这里完整贴出该脚本(主库上操作,192.168.0.50)。
在MHA Manager修改脚本修改后的内容如下(参考资料比较少):
- #!/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.0.88';
- my $ssh_start_vip = "/etc/init.d/keepalived start";
- my $ssh_stop_vip = "/etc/init.d/keepalived stop";
- 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 = ;
- eval {
- print "Disabling the VIP on old master: $orig_master_host \n";
- &stop_vip();
- $exit_code = ;
- };
- if ($@) {
- warn "Got Error: $@\n";
- exit $exit_code;
- }
- exit $exit_code;
- }
- elsif ( $command eq "start" ) {
- my $exit_code = ;
- eval {
- print "Enabling the VIP - $vip on the new master - $new_master_host \n";
- &start_vip();
- $exit_code = ;
- };
- if ($@) {
- warn $@;
- exit $exit_code;
- }
- exit $exit_code;
- }
- elsif ( $command eq "status" ) {
- print "Checking the Status of the script.. OK \n";
- #`ssh $ssh_user\@cluster1 \" $ssh_start_vip \"`;
- exit ;
- }
- else {
- &usage();
- exit ;
- }
- }
- # 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() {
return 0 unless ($ssh_user);- `ssh $ssh_user\@$orig_master_host \" $ssh_stop_vip \"`;
- }
- sub usage {
- "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";
- }
现在已经修改这个脚本了,我们现在打开在上面提到过的参数,再检查集群状态,看是否会报错。
- [root@192.168.0.20 ~]# grep 'master_ip_failover_script' /etc/masterha/app1.cnf
- master_ip_failover_script= /usr/local/bin/master_ip_failover
- [root@192.168.0.20 ~]#
- [root@192.168.0.20 ~]# masterha_check_repl --conf=/etc/masterha/app1.cnf
- Sun Apr :: - [info] Slaves settings check done.
- Sun Apr :: - [info]
- 192.168.0.50 (current master)
- +--192.168.0.60
- +--192.168.0.70
- Sun Apr :: - [info] Checking replication health on 192.168.0.60..
- Sun Apr :: - [info] ok.
- Sun Apr :: - [info] Checking replication health on 192.168.0.70..
- Sun Apr :: - [info] ok.
- Sun Apr :: - [info] Checking master_ip_failover_script status:
- Sun Apr :: - [info] /usr/local/bin/master_ip_failover --command=status --ssh_user=root --orig_master_host=192.168.0.50 --orig_master_ip=192.168.0.50 --orig_master_port=
- Sun Apr :: - [info] OK.
- Sun Apr :: - [warning] shutdown_script is not defined.
- Sun Apr :: - [info] Got exit code (Not master dead).
- MySQL Replication Health is OK.
可以看见已经没有报错了。哈哈
/usr/local/bin/master_ip_failover添加或者修改的内容意思是当主库数据库发生故障时,会触发MHA切换,MHA Manager会停掉主库上的keepalived服务,触发虚拟ip漂移到备选从库,从而完成切换。当然可以在keepalived里面引入脚本,这个脚本监控mysql是否正常运行,如果不正常,则调用该脚本杀掉keepalived进程。
2.通过脚本的方式管理VIP。这里是修改/usr/local/bin/master_ip_failover,也可以使用其他的语言完成,比如php语言。使用php脚本编写的failover这里就不介绍了。修改完成后内容如下,而且如果使用脚本管理vip的话,需要手动在master服务器上绑定一个vip(发现修改修改对perl竟然有感觉了。难道我适合学Perl?^_^)
- [root@192.168.0.50 ~]# /sbin/ifconfig eth1: 192.168.0.88/
通过脚本来维护vip的测试我这里就不说明了,童鞋们自行测试,脚本如下(测试通过)
- #!/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.0.88/24';
- my $key = '1';
- my $ssh_start_vip = "/sbin/ifconfig eth1:$key $vip";
- my $ssh_stop_vip = "/sbin/ifconfig eth1:$key down";
- 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 = ;
- eval {
- print "Disabling the VIP on old master: $orig_master_host \n";
- &stop_vip();
- $exit_code = ;
- };
- if ($@) {
- warn "Got Error: $@\n";
- exit $exit_code;
- }
- exit $exit_code;
- }
- elsif ( $command eq "start" ) {
- my $exit_code = ;
- eval {
- print "Enabling the VIP - $vip on the new master - $new_master_host \n";
- &start_vip();
- $exit_code = ;
- };
- if ($@) {
- warn $@;
- exit $exit_code;
- }
- exit $exit_code;
- }
- elsif ( $command eq "status" ) {
- print "Checking the Status of the script.. OK \n";
- exit ;
- }
- else {
- &usage();
- exit ;
- }
- }
- 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 {
- "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";
- }
为了防止脑裂发生,推荐生产环境采用脚本的方式来管理虚拟ip,而不是使用keepalived来完成。到此为止,基本MHA集群已经配置完毕。接下来就是实际的测试环节了。通过一些测试来看一下MHA到底是如何进行工作的。下面将从MHA自动failover,我们手动failover,在线切换三种方式来介绍MHA的工作情况。
一.自动Failover(必须先启动MHA Manager,否则无法自动切换,当然手动切换不需要开启MHA Manager监控。各位童鞋请参考前面启动MHA Manager)
测试环境再次贴一下,文章太长,自己都搞晕了。
- 角色 ip地址 主机名 server_id 类型
- Monitor host 192.168.0.20 server01 - 监控复制组
- Master 192.168.0.50 server02 写入
- Candicate master 192.168.0.60 server03 读
- Slave 192.168.0.70 server04 读
自动failover模拟测试的操作步骤如下。
(1)使用sysbench生成测试数据(使用yum快速安装)
- yum install sysbench -y
在主库(192.168.0.50)上进行sysbench数据生成,在sbtest库下生成sbtest表,共100W记录。
- [root@192.168.0.50 ~]# sysbench --test=oltp --oltp-table-size= --oltp-read-only=off --init-rng=on --num-threads= --max-requests= --oltp-dist-type=uniform --max-time= --mysql-user=root --mysql-socket=/tmp/mysql.sock --mysql-password= --db-driver=mysql --mysql-table-engine=innodb --oltp-test-mode=complex prepare
(2)停掉slave sql线程,模拟主从延时。(192.168.0.60)
- mysql> stop slave io_thread;
- Query OK, 0 rows affected (0.08 sec)
- mysql>
另外一台slave我们没有停止io线程,所以还在继续接收日志。
(3)模拟sysbench压力测试。
在主库上(192.168.0.50)进行压力测试,持续时间为3分钟,产生大量的binlog。
- [root@192.168.0.50 ~]# sysbench --test=oltp --oltp-table-size= --oltp-read-only=off --init-rng=on --num-threads= --max-requests= --oltp-dist-type=uniform --max-time= --mysql-user=root --mysql-socket=/tmp/mysql.sock --mysql-password= --db-driver=mysql --mysql-table-engine=innodb --oltp-test-mode=complex run
- sysbench 0.4.: multi-threaded system evaluation benchmark
- Running the test with following options:
- Number of threads:
- Initializing random number generator from timer.
- Doing OLTP test.
- Running mixed OLTP test
- Using Uniform distribution
- Using "BEGIN" for starting transactions
- Using auto_inc on the id column
- Threads started!
- Time limit exceeded, exiting...
- (last message repeated times)
- Done.
- OLTP test statistics:
- queries performed:
- read:
- write:
- other:
- total:
- transactions: (5.92 per sec.)
- deadlocks: (0.00 per sec.)
- read/write requests: (112.56 per sec.)
- other operations: (11.85 per sec.)
- Test execution summary:
- total time: .9728s
- total number of events:
- total time taken by event execution: 2910.4518
- per-request statistics:
- min: .29ms
- avg: .86ms
- max: .95ms
- approx. percentile: .47ms
- Threads fairness:
- events (avg/stddev): 67.3750/1.49
- execution time (avg/stddev): 181.9032/0.11
(4)开启slave(192.168.0.60)上的IO线程,追赶落后于master的binlog。
- mysql> start slave io_thread;
- Query OK, 0 rows affected (0.00 sec)
- mysql>
(5)杀掉主库mysql进程,模拟主库发生故障,进行自动failover操作。
- [root@192.168.0.50 ~]# pkill - mysqld
(6)查看MHA切换日志,了解整个切换过程,在192.168.0.20上查看日志:
- [root@192.168.0.20 ~]# cat /var/log/masterha/app1/manager.log
- Mon Apr :: - [warning] Got error on MySQL select ping: (MySQL server has gone away)
- Mon Apr :: - [info] Executing seconary network check script: /usr/local/bin/masterha_secondary_check -s server03 -s server02 --user=root --master_host=server02 --master_ip=192.168.0.50 --master_ Creating /tmp if not exists.. ok.
- Checking output directory is accessible or not..
- ok.
- Binlog found at /data/mysql, up to mysql-bin.
- Mon Apr :: - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping.
- Mon Apr :: - [info] Reading application default configurations from /etc/masterha/app1.cnf..
- Mon Apr :: - [info] Reading server configurations from /etc/masterha/app1.cnf..
- ble from server03. OK.
- Monitoring server server02 is reachable, Master is not reachable from server02. OK.
- Mon Apr :: - [info] Master is not reachable from all other monitoring servers. Failover should start.
- Mon Apr :: - [warning] Got error on MySQL connect: (Lost connection to MySQL server at 'reading initial communication packet', system error: )
- Mon Apr :: - [warning] Connection failed time(s)..
- Mon Apr :: - [warning] Got error on MySQL connect: (Lost connection to MySQL server at 'reading initial communication packet', system error: )
- Mon Apr :: - [warning] Connection failed time(s)..
- Mon Apr :: - [warning] Got error on MySQL connect: (Lost connection to MySQL server at 'reading initial communication packet', system error: )
- Mon Apr :: - [warning] Connection failed time(s)..
- Mon Apr :: - [warning] Master is not reachable from health checker!
- Mon Apr :: - [warning] Master 192.168.0.50(192.168.0.50:) is not reachable!
- Mon Apr :: - [warning] SSH is reachable.
- Mon Apr :: - [info] Connecting to a master server failed. Reading configuration file /etc/masterha_default.cnf and /etc/masterha/app1.cnf again, and trying to connect to all servers to check server status..
- Mon Apr :: - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping.
- Mon Apr :: - [info] Reading application default configurations from /etc/masterha/app1.cnf..
- Mon Apr :: - [info] Reading server configurations from /etc/masterha/app1.cnf..
- Mon Apr :: - [info] Dead Servers:
- Mon Apr :: - [info] 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] Alive Servers:
- Mon Apr :: - [info] 192.168.0.60(192.168.0.60:)
- Mon Apr :: - [info] 192.168.0.70(192.168.0.70:)
- Mon Apr :: - [info] Alive Slaves:
- Mon Apr :: - [info] 192.168.0.60(192.168.0.60:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] Primary candidate for the new Master (candidate_master is set)
- Mon Apr :: - [info] 192.168.0.70(192.168.0.70:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] Checking slave configurations..
- Mon Apr :: - [info] Checking replication filtering settings..
- Mon Apr :: - [info] Replication filtering check ok.
- Mon Apr :: - [info] Master is down!
- Mon Apr :: - [info] Terminating monitoring script.
- Mon Apr :: - [info] Got exit code (Master dead).
- Mon Apr :: - [info] MHA::MasterFailover version 0.53.
- Mon Apr :: - [info] Starting master failover.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase : Configuration Check Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] Dead Servers:
- Mon Apr :: - [info] 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] Checking master reachability via mysql(double check)..
- Mon Apr :: - [info] ok.
- Mon Apr :: - [info] Alive Servers:
- Mon Apr :: - [info] 192.168.0.60(192.168.0.60:)
- Mon Apr :: - [info] 192.168.0.70(192.168.0.70:)
- Mon Apr :: - [info] Alive Slaves:
- Mon Apr :: - [info] 192.168.0.60(192.168.0.60:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] Primary candidate for the new Master (candidate_master is set)
- Mon Apr :: - [info] 192.168.0.70(192.168.0.70:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] ** Phase : Configuration Check Phase completed.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase : Dead Master Shutdown Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] Forcing shutdown so that applications never connect to the current master..
- Mon Apr :: - [info] Executing master IP deactivatation script:
- Mon Apr :: - [info] /usr/local/bin/master_ip_failover --orig_master_host=192.168.0.50 --orig_master_ip=192.168.0.50 --orig_master_port= --command=stopssh --ssh_user=root
- IN SCRIPT TEST====/etc/init.d/keepalived stop==/etc/init.d/keepalived start===
- Disabling the VIP on old master: 192.168.0.50
- Mon Apr :: - [info] done.
- Mon Apr :: - [warning] shutdown_script is not set. Skipping explicit shutting down of the dead master.
- Mon Apr :: - [info] * Phase : Dead Master Shutdown Phase completed.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase : Master Recovery Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 3.1: Getting Latest Slaves Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] The latest binary log file/position on all slaves is mysql-bin.:
- Mon Apr :: - [info] Latest slaves (Slaves that received relay log files to the latest):
- Mon Apr :: - [info] 192.168.0.60(192.168.0.60:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] Primary candidate for the new Master (candidate_master is set)
- Mon Apr :: - [info] 192.168.0.70(192.168.0.70:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] The oldest binary log file/position on all slaves is mysql-bin.:
- Mon Apr :: - [info] Oldest slaves:
- Mon Apr :: - [info] 192.168.0.60(192.168.0.60:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] Primary candidate for the new Master (candidate_master is set)
- Mon Apr :: - [info] 192.168.0.70(192.168.0.70:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 3.2: Saving Dead Master's Binlog Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] Fetching dead master's binary logs..
- Mon Apr :: - [info] Executing command on the dead master 192.168.0.50(192.168.0.50:): save_binary_logs --command=save --start_file=mysql-bin. --start_pos= --binlog_dir=/data/mysql --output_file=/tmp/saved_master_binlog_from_192.168.0.50_3306_20140421201548.binlog --handle_raw_binlog= --disable_log_bin= --manager_version=0.53
- Creating /tmp if not exists.. ok.
- Concat binary/relay logs from mysql-bin. pos to mysql-bin. EOF into /tmp/saved_master_binlog_from_192.168.0.50_3306_20140421201548.binlog ..
- Dumping binlog format description event, from position to .. ok.
- Dumping effective binlog data from /data/mysql/mysql-bin. position to tail().. ok.
- Concat succeeded.
- Mon Apr :: - [info] scp from root@192.168.0.50:/tmp/saved_master_binlog_from_192.168.0.50_3306_20140421201548.binlog to local:/var/log/masterha/app1.log/saved_master_binlog_from_192.168.0.50_3306_20140421201548.binlog succeeded.
- Mon Apr :: - [info] HealthCheck: SSH to 192.168.0.60 is reachable.
- Mon Apr :: - [info] HealthCheck: SSH to 192.168.0.70 is reachable.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 3.3: Determining New Master Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] Finding the latest slave that has all relay logs for recovering other slaves..
- Mon Apr :: - [info] All slaves received relay logs to the same position. No need to resync each other.
- Mon Apr :: - [info] Searching new master from slaves..
- Mon Apr :: - [info] Candidate masters from the configuration file:
- Mon Apr :: - [info] 192.168.0.60(192.168.0.60:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] Primary candidate for the new Master (candidate_master is set)
- Mon Apr :: - [info] Non-candidate masters:
- Mon Apr :: - [info] Searching from candidate_master slaves which have received the latest relay log events..
- Mon Apr :: - [info] New master is 192.168.0.60(192.168.0.60:)
- Mon Apr :: - [info] Starting master failover..
- Mon Apr :: - [info]
- From:
- 192.168.0.50 (current master)
- +--192.168.0.60
- +--192.168.0.70
- To:
- 192.168.0.60 (new master)
- +--192.168.0.70
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 3.3: New Master Diff Log Generation Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] This server has all relay logs. No need to generate diff files from the latest slave.
- Mon Apr :: - [info] Sending binlog..
- Mon Apr :: - [info] scp from local:/var/log/masterha/app1.log/saved_master_binlog_from_192.168.0.50_3306_20140421201548.binlog to root@192.168.0.60:/tmp/saved_master_binlog_from_192.168.0.50_3306_20140421201548.binlog succeeded.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 3.4: Master Log Apply Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] *NOTICE: If any error happens from this phase, manual recovery is needed.
- Mon Apr :: - [info] Starting recovery on 192.168.0.60(192.168.0.60:)..
- Mon Apr :: - [info] Generating diffs succeeded.
- Mon Apr :: - [info] Waiting until all relay logs are applied.
- Mon Apr :: - [info] done.
- Mon Apr :: - [info] Getting slave status..
- Mon Apr :: - [info] This slave(192.168.0.60)'s Exec_Master_Log_Pos equals to Read_Master_Log_Pos(mysql-bin.000018:112). No need to recover from Exec_Master_Log_Pos.
- Mon Apr :: - [info] Connecting to the target slave host 192.168.0.60, running recover script..
- Mon Apr :: - [info] Executing command: apply_diff_relay_logs --command=apply --slave_user=root --slave_host=192.168.0.60 --slave_ip=192.168.0.60 --slave_port= --apply_files=/tmp/saved_master_binlog_from_192.168.0.50_3306_20140421201548.binlog --workdir=/tmp --target_version=5.5.-ndb-7.2.-gpl-log --timestamp= --handle_raw_binlog= --disable_log_bin= --manager_version=0.53 --slave_pass=xxx
- Mon Apr :: - [info]
- Applying differential binary/relay log files /tmp/saved_master_binlog_from_192.168.0.50_3306_20140421201548.binlog on 192.168.0.60:. This may take long time...
- Applying log files succeeded.
- Mon Apr :: - [info] All relay logs were successfully applied.
- Mon Apr :: - [info] Getting new master's binlog name and position..
- Mon Apr :: - [info] mysql-bin.:
- Mon Apr :: - [info] All other slaves should start replication from here. Statement should be: CHANGE MASTER TO MASTER_HOST='192.168.0.60', MASTER_PORT=, MASTER_LOG_FILE='mysql-bin.000022', MASTER_LOG_POS=, MASTER_USER='repl', MASTER_PASSWORD='xxx';
- Mon Apr :: - [info] Executing master IP activate script:
- Mon Apr :: - [info] /usr/local/bin/master_ip_failover --command=start --ssh_user=root --orig_master_host=192.168.0.50 --orig_master_ip=192.168.0.50 --orig_master_port= --new_master_host=192.168.0.60 --new_master_ip=192.168.0.60 --new_master_port=
- IN SCRIPT TEST====/etc/init.d/keepalived stop==/etc/init.d/keepalived start===
- Enabling the VIP - 192.168.0.88 on the new master - 192.168.0.60
- Mon Apr :: - [info] OK.
- Mon Apr :: - [info] Setting read_only= on 192.168.0.60(192.168.0.60:)..
- Mon Apr :: - [info] ok.
- Mon Apr :: - [info] ** Finished master recovery successfully.
- Mon Apr :: - [info] * Phase : Master Recovery Phase completed.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase : Slaves Recovery Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 4.1: Starting Parallel Slave Diff Log Generation Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] -- Slave diff file generation on host 192.168.0.70(192.168.0.70:) started, pid: . Check tmp log /var/log/masterha/app1.log/192.168..70_3306_20140421201548.log if it takes time..
- Mon Apr :: - [info]
- Mon Apr :: - [info] Log messages from 192.168.0.70 ...
- Mon Apr :: - [info]
- Mon Apr :: - [info] This server has all relay logs. No need to generate diff files from the latest slave.
- Mon Apr :: - [info] End of log messages from 192.168.0.70.
- Mon Apr :: - [info] -- 192.168.0.70(192.168.0.70:) has the latest relay log events.
- Mon Apr :: - [info] Generating relay diff files from the latest slave succeeded.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 4.2: Starting Parallel Slave Log Apply Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] -- Slave recovery on host 192.168.0.70(192.168.0.70:) started, pid: . Check tmp log /var/log/masterha/app1.log/192.168..70_3306_20140421201548.log if it takes time..
- Mon Apr :: - [info]
- Mon Apr :: - [info] Log messages from 192.168.0.70 ...
- Mon Apr :: - [info]
- Mon Apr :: - [info] Sending binlog..
- Mon Apr :: - [info] scp from local:/var/log/masterha/app1.log/saved_master_binlog_from_192.168.0.50_3306_20140421201548.binlog to root@192.168.0.70:/tmp/saved_master_binlog_from_192.168.0.50_3306_20140421201548.binlog succeeded.
- Mon Apr :: - [info] Starting recovery on 192.168.0.70(192.168.0.70:)..
- Mon Apr :: - [info] Generating diffs succeeded.
- Mon Apr :: - [info] Waiting until all relay logs are applied.
- Mon Apr :: - [info] done.
- Mon Apr :: - [info] Getting slave status..
- Mon Apr :: - [info] This slave(192.168.0.70)'s Exec_Master_Log_Pos equals to Read_Master_Log_Pos(mysql-bin.000018:112). No need to recover from Exec_Master_Log_Pos.
- Mon Apr :: - [info] Connecting to the target slave host 192.168.0.70, running recover script..
- Mon Apr :: - [info] Executing command: apply_diff_relay_logs --command=apply --slave_user=root --slave_host=192.168.0.70 --slave_ip=192.168.0.70 --slave_port= --apply_files=/tmp/saved_master_binlog_from_192.168.0.50_3306_20140421201548.binlog --workdir=/tmp --target_version=5.5.-ndb-7.2.-gpl-log --timestamp= --handle_raw_binlog= --disable_log_bin= --manager_version=0.53 --slave_pass=xxx
- Mon Apr :: - [info]
- Applying differential binary/relay log files /tmp/saved_master_binlog_from_192.168.0.50_3306_20140421201548.binlog on 192.168.0.70:. This may take long time...
- Applying log files succeeded.
- Mon Apr :: - [info] All relay logs were successfully applied.
- Mon Apr :: - [info] Resetting slave 192.168.0.70(192.168.0.70:) and starting replication from the new master 192.168.0.60(192.168.0.60:)..
- Mon Apr :: - [info] Executed CHANGE MASTER.
- Mon Apr :: - [info] Slave started.
- Mon Apr :: - [info] End of log messages from 192.168.0.70.
- Mon Apr :: - [info] -- Slave recovery on host 192.168.0.70(192.168.0.70:) succeeded.
- Mon Apr :: - [info] All new slave servers recovered successfully.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase : New master cleanup phease..
- Mon Apr :: - [info]
- Mon Apr :: - [info] Resetting slave info on the new master..
- Mon Apr :: - [info] 192.168.0.60: Resetting slave info succeeded.
- Mon Apr :: - [info] Master failover to 192.168.0.60(192.168.0.60:) completed successfully.
- Mon Apr :: - [info] Deleted server1 entry from /etc/masterha/app1.cnf .
- Mon Apr :: - [info]
- ----- Failover Report -----
- app1: MySQL Master failover 192.168.0.50 to 192.168.0.60 succeeded
- Master 192.168.0.50 is down!
- Check MHA Manager logs at server01:/var/log/masterha/app1/manager.log for details.
- Started automated(non-interactive) failover.
- Invalidated master IP address on 192.168.0.50.
- The latest slave 192.168.0.60(192.168.0.60:) has all relay logs for recovery.
- Selected 192.168.0.60 as a new master.
- 192.168.0.60: OK: Applying all logs succeeded.
- 192.168.0.60: OK: Activated master IP address.
- 192.168.0.70: This host has the latest relay log events.
- Generating relay diff files from the latest slave succeeded.
- 192.168.0.70: OK: Applying all logs succeeded. Slave started, replicating from 192.168.0.60.
- 192.168.0.60: Resetting slave info succeeded.
- Master failover to 192.168.0.60(192.168.0.60:) completed successfully.
- [root@192.168.0.20 ~]#
看到最后的Master failover to 192.168.0.60(192.168.0.60:3306) completed successfully.说明备选master现在已经上位了。
从上面的输出可以看出整个MHA的切换过程,共包括以下的步骤:
1.配置文件检查阶段,这个阶段会检查整个集群配置文件配置
2.宕机的master处理,这个阶段包括虚拟ip摘除操作,主机关机操作(这个我这里还没有实现,需要研究)
3.复制dead maste和最新slave相差的relay log,并保存到MHA Manger具体的目录下
4.识别含有最新更新的slave
5.应用从master保存的二进制日志事件(binlog events)
6.提升一个slave为新的master进行复制
7.使其他的slave连接新的master进行复制
最后启动MHA Manger监控,查看集群里面现在谁是master(在切换后监控就停止了。。。还有东西没搞对?)后来在官方网站看到这句话就明白了 。
Running MHA Manager from daemontools
Currently MHA Manager process does not run as a daemon. If failover completed successfully or the master process was killed by accident, the manager stops working. To run as a daemon, daemontool. or any external daemon program can be used. Here is an example to run from daemontools.
- [root@192.168.0.20 ~]# masterha_check_status --conf=/etc/masterha/app1.cnf
- app1 (pid:) is running(:PING_OK), master:192.168.0.60
- [root@192.168.0.20 ~]#
二.手动Failover(MHA Manager必须没有运行)
手动failover,这种场景意味着在业务上没有启用MHA自动切换功能,当主服务器故障时,人工手动调用MHA来进行故障切换操作,具体命令如下:
注意:如果,MHA manager检测到没有dead的server,将报错,并结束failover:
- Mon Apr :: - [info] Dead Servers:
- Mon Apr :: - [error][/usr/local/share/perl5/MHA/MasterFailover.pm, ln181] None of server is dead. Stop failover.
- Mon Apr :: - [error][/usr/local/share/perl5/MHA/ManagerUtil.pm, ln178] Got ERROR: at /usr/local/bin/masterha_master_switch line
进行手动切换命令如下:
- [root@192.168.0.20 ~]# masterha_master_switch --master_state=dead --conf=/etc/masterha/app1.cnf --dead_master_host=192.168.0.50 --dead_master_port= --new_master_host=192.168.0.60 --new_master_port= --ignore_last_failover
输出的信息会询问你是否进行切换:
- Mon Apr :: - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping.
- Mon Apr :: - [info] Reading application default configurations from /etc/masterha/app1.cnf..
- Mon Apr :: - [info] Reading server configurations from /etc/masterha/app1.cnf..
- Mon Apr :: - [info] MHA::MasterFailover version 0.53.
- Mon Apr :: - [info] Starting master failover.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase : Configuration Check Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] Dead Servers:
- Mon Apr :: - [info] 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] Checking master reachability via mysql(double check)..
- Mon Apr :: - [info] ok.
- Mon Apr :: - [info] Alive Servers:
- Mon Apr :: - [info] 192.168.0.60(192.168.0.60:)
- Mon Apr :: - [info] 192.168.0.70(192.168.0.70:)
- Mon Apr :: - [info] Alive Slaves:
- Mon Apr :: - [info] 192.168.0.60(192.168.0.60:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] Primary candidate for the new Master (candidate_master is set)
- Mon Apr :: - [info] 192.168.0.70(192.168.0.70:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Master 192.168.0.50 is dead. Proceed? (yes/NO): yes
- Mon Apr :: - [info] ** Phase : Configuration Check Phase completed.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase : Dead Master Shutdown Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] HealthCheck: SSH to 192.168.0.50 is reachable.
- Mon Apr :: - [info] Forcing shutdown so that applications never connect to the current master..
- Mon Apr :: - [info] Executing master IP deactivatation script:
- Mon Apr :: - [info] /usr/local/bin/master_ip_failover --orig_master_host=192.168.0.50 --orig_master_ip=192.168.0.50 --orig_master_port= --command=stopssh --ssh_user=root
- IN SCRIPT TEST====/sbin/ifconfig eth1: down==/sbin/ifconfig eth1: 192.168.0.88/===
- Disabling the VIP on old master: 192.168.0.50
- Mon Apr :: - [info] done.
- Mon Apr :: - [warning] shutdown_script is not set. Skipping explicit shutting down of the dead master.
- Mon Apr :: - [info] * Phase : Dead Master Shutdown Phase completed.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase : Master Recovery Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 3.1: Getting Latest Slaves Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] The latest binary log file/position on all slaves is mysql-bin.:
- Mon Apr :: - [info] Latest slaves (Slaves that received relay log files to the latest):
- Mon Apr :: - [info] 192.168.0.60(192.168.0.60:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] Primary candidate for the new Master (candidate_master is set)
- Mon Apr :: - [info] 192.168.0.70(192.168.0.70:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] The oldest binary log file/position on all slaves is mysql-bin.:
- Mon Apr :: - [info] Oldest slaves:
- Mon Apr :: - [info] 192.168.0.60(192.168.0.60:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info] Primary candidate for the new Master (candidate_master is set)
- Mon Apr :: - [info] 192.168.0.70(192.168.0.70:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Mon Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 3.2: Saving Dead Master's Binlog Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] Fetching dead master's binary logs..
- Mon Apr :: - [info] Executing command on the dead master 192.168.0.50(192.168.0.50:): save_binary_logs --command=save --start_file=mysql-bin. --start_pos= --binlog_dir=/data/mysql --output_file=/tmp/saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog --handle_raw_binlog= --disable_log_bin= --manager_version=0.53
- Creating /tmp if not exists.. ok.
- Concat binary/relay logs from mysql-bin. pos to mysql-bin. EOF into /tmp/saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog ..
- Dumping binlog format description event, from position to .. ok.
- Dumping effective binlog data from /data/mysql/mysql-bin. position to tail().. ok.
- Concat succeeded.
- saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog % .1KB/s :
- Mon Apr :: - [info] scp from root@192.168.0.50:/tmp/saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog to local:/var/log/masterha/app1.log/saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog succeeded.
- Mon Apr :: - [info] HealthCheck: SSH to 192.168.0.60 is reachable.
- Mon Apr :: - [info] HealthCheck: SSH to 192.168.0.70 is reachable.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 3.3: Determining New Master Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] Finding the latest slave that has all relay logs for recovering other slaves..
- Mon Apr :: - [info] All slaves received relay logs to the same position. No need to resync each other.
- Mon Apr :: - [info] 192.168.0.60 can be new master.
- Mon Apr :: - [info] New master is 192.168.0.60(192.168.0.60:)
- Mon Apr :: - [info] Starting master failover..
- Mon Apr :: - [info]
- From:
- 192.168.0.50 (current master)
- +--192.168.0.60
- +--192.168.0.70
- To:
- 192.168.0.60 (new master)
- +--192.168.0.70
- Starting master switch from 192.168.0.50(192.168.0.50:) to 192.168.0.60(192.168.0.60:)? (yes/NO): yes
- Mon Apr :: - [info] New master decided manually is 192.168.0.60(192.168.0.60:)
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 3.3: New Master Diff Log Generation Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] This server has all relay logs. No need to generate diff files from the latest slave.
- Mon Apr :: - [info] Sending binlog..
- saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog % .1KB/s :
- Mon Apr :: - [info] scp from local:/var/log/masterha/app1.log/saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog to root@192.168.0.60:/tmp/saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog succeeded.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 3.4: Master Log Apply Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] *NOTICE: If any error happens from this phase, manual recovery is needed.
- Mon Apr :: - [info] Starting recovery on 192.168.0.60(192.168.0.60:)..
- Mon Apr :: - [info] Generating diffs succeeded.
- Mon Apr :: - [info] Waiting until all relay logs are applied.
- Mon Apr :: - [info] done.
- Mon Apr :: - [info] Getting slave status..
- Mon Apr :: - [info] This slave(192.168.0.60)'s Exec_Master_Log_Pos equals to Read_Master_Log_Pos(mysql-bin.000020:112). No need to recover from Exec_Master_Log_Pos.
- Mon Apr :: - [info] Connecting to the target slave host 192.168.0.60, running recover script..
- Mon Apr :: - [info] Executing command: apply_diff_relay_logs --command=apply --slave_user=root --slave_host=192.168.0.60 --slave_ip=192.168.0.60 --slave_port= --apply_files=/tmp/saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog --workdir=/tmp --target_version=5.5.-ndb-7.2.-gpl-log --timestamp= --handle_raw_binlog= --disable_log_bin= --manager_version=0.53 --slave_pass=xxx
- Mon Apr :: - [info]
- Applying differential binary/relay log files /tmp/saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog on 192.168.0.60:. This may take long time...
- Applying log files succeeded.
- Mon Apr :: - [info] All relay logs were successfully applied.
- Mon Apr :: - [info] Getting new master's binlog name and position..
- Mon Apr :: - [info] mysql-bin.:
- Mon Apr :: - [info] All other slaves should start replication from here. Statement should be: CHANGE MASTER TO MASTER_HOST='192.168.0.60', MASTER_PORT=, MASTER_LOG_FILE='mysql-bin.000022', MASTER_LOG_POS=, MASTER_USER='repl', MASTER_PASSWORD='xxx';
- Mon Apr :: - [info] Executing master IP activate script:
- Mon Apr :: - [info] /usr/local/bin/master_ip_failover --command=start --ssh_user=root --orig_master_host=192.168.0.50 --orig_master_ip=192.168.0.50 --orig_master_port= --new_master_host=192.168.0.60 --new_master_ip=192.168.0.60 --new_master_port=
- IN SCRIPT TEST====/sbin/ifconfig eth1: down==/sbin/ifconfig eth1: 192.168.0.88/===
- Enabling the VIP - 192.168.0.88/ on the new master - 192.168.0.60
- Mon Apr :: - [info] OK.
- Mon Apr :: - [info] Setting read_only= on 192.168.0.60(192.168.0.60:)..
- Mon Apr :: - [info] ok.
- Mon Apr :: - [info] ** Finished master recovery successfully.
- Mon Apr :: - [info] * Phase : Master Recovery Phase completed.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase : Slaves Recovery Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 4.1: Starting Parallel Slave Diff Log Generation Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] -- Slave diff file generation on host 192.168.0.70(192.168.0.70:) started, pid: . Check tmp log /var/log/masterha/app1.log/192.168..70_3306_20140421212800.log if it takes time..
- Mon Apr :: - [info]
- Mon Apr :: - [info] Log messages from 192.168.0.70 ...
- Mon Apr :: - [info]
- Mon Apr :: - [info] This server has all relay logs. No need to generate diff files from the latest slave.
- Mon Apr :: - [info] End of log messages from 192.168.0.70.
- Mon Apr :: - [info] -- 192.168.0.70(192.168.0.70:) has the latest relay log events.
- Mon Apr :: - [info] Generating relay diff files from the latest slave succeeded.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase 4.2: Starting Parallel Slave Log Apply Phase..
- Mon Apr :: - [info]
- Mon Apr :: - [info] -- Slave recovery on host 192.168.0.70(192.168.0.70:) started, pid: . Check tmp log /var/log/masterha/app1.log/192.168..70_3306_20140421212800.log if it takes time..
- saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog % .1KB/s :
- Mon Apr :: - [info]
- Mon Apr :: - [info] Log messages from 192.168.0.70 ...
- Mon Apr :: - [info]
- Mon Apr :: - [info] Sending binlog..
- Mon Apr :: - [info] scp from local:/var/log/masterha/app1.log/saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog to root@192.168.0.70:/tmp/saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog succeeded.
- Mon Apr :: - [info] Starting recovery on 192.168.0.70(192.168.0.70:)..
- Mon Apr :: - [info] Generating diffs succeeded.
- Mon Apr :: - [info] Waiting until all relay logs are applied.
- Mon Apr :: - [info] done.
- Mon Apr :: - [info] Getting slave status..
- Mon Apr :: - [info] This slave(192.168.0.70)'s Exec_Master_Log_Pos equals to Read_Master_Log_Pos(mysql-bin.000020:112). No need to recover from Exec_Master_Log_Pos.
- Mon Apr :: - [info] Connecting to the target slave host 192.168.0.70, running recover script..
- Mon Apr :: - [info] Executing command: apply_diff_relay_logs --command=apply --slave_user=root --slave_host=192.168.0.70 --slave_ip=192.168.0.70 --slave_port= --apply_files=/tmp/saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog --workdir=/tmp --target_version=5.5.-ndb-7.2.-gpl-log --timestamp= --handle_raw_binlog= --disable_log_bin= --manager_version=0.53 --slave_pass=xxx
- Mon Apr :: - [info]
- Applying differential binary/relay log files /tmp/saved_master_binlog_from_192.168.0.50_3306_20140421212800.binlog on 192.168.0.70:. This may take long time...
- Applying log files succeeded.
- Mon Apr :: - [info] All relay logs were successfully applied.
- Mon Apr :: - [info] Resetting slave 192.168.0.70(192.168.0.70:) and starting replication from the new master 192.168.0.60(192.168.0.60:)..
- Mon Apr :: - [info] Executed CHANGE MASTER.
- Mon Apr :: - [info] Slave started.
- Mon Apr :: - [info] End of log messages from 192.168.0.70.
- Mon Apr :: - [info] -- Slave recovery on host 192.168.0.70(192.168.0.70:) succeeded.
- Mon Apr :: - [info] All new slave servers recovered successfully.
- Mon Apr :: - [info]
- Mon Apr :: - [info] * Phase : New master cleanup phease..
- Mon Apr :: - [info]
- Mon Apr :: - [info] Resetting slave info on the new master..
- Mon Apr :: - [info] 192.168.0.60: Resetting slave info succeeded.
- Mon Apr :: - [info] Master failover to 192.168.0.60(192.168.0.60:) completed successfully.
- Mon Apr :: - [info]
- ----- Failover Report -----
- app1: MySQL Master failover 192.168.0.50 to 192.168.0.60 succeeded
- Master 192.168.0.50 is down!
- Check MHA Manager logs at server01 for details.
- Started manual(interactive) failover.
- Invalidated master IP address on 192.168.0.50.
- The latest slave 192.168.0.60(192.168.0.60:) has all relay logs for recovery.
- Selected 192.168.0.60 as a new master.
- 192.168.0.60: OK: Applying all logs succeeded.
- 192.168.0.60: OK: Activated master IP address.
- 192.168.0.70: This host has the latest relay log events.
- Generating relay diff files from the latest slave succeeded.
- 192.168.0.70: OK: Applying all logs succeeded. Slave started, replicating from 192.168.0.60.
- 192.168.0.60: Resetting slave info succeeded.
- Master failover to 192.168.0.60(192.168.0.60:) completed successfully.
上述模拟了master宕机的情况下手动把192.168.0.60提升为主库的操作过程。
三.在线进行切换
在许多情况下, 需要将现有的主服务器迁移到另外一台服务器上。 比如主服务器硬件故障,RAID 控制卡需要重建,将主服务器移到性能更好的服务器上等等。维护主服务器引起性能下降, 导致停机时间至少无法写入数据。 另外, 阻塞或杀掉当前运行的会话会导致主主之间数据不一致的问题发生。 MHA 提供快速切换和优雅的阻塞写入,这个切换过程只需要 0.5-2s 的时间,这段时间内数据是无法写入的。在很多情况下,0.5-2s 的阻塞写入是可以接受的。因此切换主服务器不需要计划分配维护时间窗口。
MHA在线切换的大概过程:
1.检测复制设置和确定当前主服务器
2.确定新的主服务器
3.阻塞写入到当前主服务器
4.等待所有从服务器赶上复制
5.授予写入到新的主服务器
6.重新设置从服务器
注意,在线切换的时候应用架构需要考虑以下两个问题:
1.自动识别master和slave的问题(master的机器可能会切换),如果采用了vip的方式,基本可以解决这个问题。
2.负载均衡的问题(可以定义大概的读写比例,每台机器可承担的负载比例,当有机器离开集群时,需要考虑这个问题)
为了保证数据完全一致性,在最快的时间内完成切换,MHA的在线切换必须满足以下条件才会切换成功,否则会切换失败。
1.所有slave的IO线程都在运行
2.所有slave的SQL线程都在运行
3.所有的show slave status的输出中Seconds_Behind_Master参数小于或者等于running_updates_limit秒,如果在切换过程中不指定running_updates_limit,那么默认情况下running_updates_limit为1秒。
4.在master端,通过show processlist输出,没有一个更新花费的时间大于running_updates_limit秒。
在线切换步骤如下:
首先,停掉MHA监控:
- [root@192.168.0.20 ~]# masterha_stop --conf=/etc/masterha/app1.cnf
其次,进行在线切换操作(模拟在线切换主库操作,原主库192.168.0.50变为slave,192.168.0.60提升为新的主库)
- [root@192.168.0.20 ~]# masterha_master_switch --conf=/etc/masterha/app1.cnf --master_state=alive --new_master_host=192.168.0.60 --new_master_port= --orig_master_is_new_slave --running_updates_limit=
最后查看日志,了解切换过程,输出信息如下:
- [root@192.168.0.20 ~]# masterha_master_switch --conf=/etc/masterha/app1.cnf --master_state=alive --new_master_host=192.168.0.60 --new_master_port= --orig_master_is_new_slave --running_updates_limit=
- Wed Apr :: - [info] MHA::MasterRotate version 0.53.
- Wed Apr :: - [info] Starting online master switch..
- Wed Apr :: - [info]
- Wed Apr :: - [info] * Phase : Configuration Check Phase..
- Wed Apr :: - [info]
- Wed Apr :: - [info] Reading default configuratoins from /etc/masterha_default.cnf..
- Wed Apr :: - [info] Reading application default configurations from /etc/masterha/app1.cnf..
- Wed Apr :: - [info] Reading server configurations from /etc/masterha/app1.cnf..
- Wed Apr :: - [info] Multi-master configuration is detected. Current primary(writable) master is 192.168.0.50(192.168.0.50:)
- Wed Apr :: - [info] Master configurations are as below:
- Master 192.168.0.60(192.168.0.60:), replicating from 192.168.0.50(192.168.0.50:), read-only
- Master 192.168.0.50(192.168.0.50:), replicating from 192.168.0.60(192.168.0.60:)
- Wed Apr :: - [info] Current Alive Master: 192.168.0.50(192.168.0.50:)
- Wed Apr :: - [info] Alive Slaves:
- Wed Apr :: - [info] 192.168.0.60(192.168.0.60:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Wed Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- Wed Apr :: - [info] Primary candidate for the new Master (candidate_master is set)
- Wed Apr :: - [info] 192.168.0.70(192.168.0.70:) Version=5.5.-ndb-7.2.-gpl-log (oldest major version between slaves) log-bin:enabled
- Wed Apr :: - [info] Replicating from 192.168.0.50(192.168.0.50:)
- It is better to execute FLUSH NO_WRITE_TO_BINLOG TABLES on the master before switching. Is it ok to execute on 192.168.0.50(192.168.0.50:)? (YES/no): yes
- Wed Apr :: - [info] Executing FLUSH NO_WRITE_TO_BINLOG TABLES. This may take long time..
- Wed Apr :: - [info] ok.
- Wed Apr :: - [info] Checking MHA is not monitoring or doing failover..
- Wed Apr :: - [info] Checking replication health on 192.168.0.60..
- Wed Apr :: - [info] ok.
- Wed Apr :: - [info] Checking replication health on 192.168.0.70..
- Wed Apr :: - [info] ok.
- Wed Apr :: - [info] 192.168.0.60 can be new master.
- Wed Apr :: - [info]
- From:
- 192.168.0.50 (current master)
- +--192.168.0.60
- +--192.168.0.70
- To:
- 192.168.0.60 (new master)
- +--192.168.0.70
- +--192.168.0.50
- Starting master switch from 192.168.0.50(192.168.0.50:) to 192.168.0.60(192.168.0.60:)? (yes/NO): yes
- Wed Apr :: - [info] Checking whether 192.168.0.60(192.168.0.60:) is ok for the new master..
- Wed Apr :: - [info] ok.
- Wed Apr :: - [info] ** Phase : Configuration Check Phase completed.
- Wed Apr :: - [info]
- Wed Apr :: - [info] * Phase : Rejecting updates Phase..
- Wed Apr :: - [info]
- Wed Apr :: - [info] Executing master ip online change script to disable write on the current master:
- Wed Apr :: - [info] /usr/local/bin/master_ip_online_change.pl --command=stop --orig_master_host=192.168.0.50 --orig_master_ip=192.168.0.50 --orig_master_port= --new_master_host=192.168.0.60 --new_master_ip=192.168.0.60 --new_master_port=
- Wed Apr :: Set read_only on the new master.. ok.
- Wed Apr :: Set read_only= on the orig master.. ok.
- Disabling the VIP on old master: 192.168.0.50
- reverse mapping checking getaddrinfo for bogon [192.168.0.50] failed - POSSIBLE BREAK-IN ATTEMPT!
- Wed Apr :: Killing all application threads..
- Wed Apr :: done.
- Wed Apr :: - [info] ok.
- Wed Apr :: - [info] Locking all tables on the orig master to reject updates from everybody (including root):
- Wed Apr :: - [info] Executing FLUSH TABLES WITH READ LOCK..
- Wed Apr :: - [info] ok.
- Wed Apr :: - [info] Orig master binlog:pos is mysql-bin.:.
- Wed Apr :: - [info] Waiting to execute all relay logs on 192.168.0.60(192.168.0.60:)..
- Wed Apr :: - [info] master_pos_wait(mysql-bin.:) completed on 192.168.0.60(192.168.0.60:). Executed events.
- Wed Apr :: - [info] done.
- Wed Apr :: - [info] Getting new master's binlog name and position..
- Wed Apr :: - [info] mysql-bin.:
- Wed Apr :: - [info] All other slaves should start replication from here. Statement should be: CHANGE MASTER TO MASTER_HOST='192.168.0.60', MASTER_PORT=, MASTER_LOG_FILE='mysql-bin.000023', MASTER_LOG_POS=, MASTER_USER='repl', MASTER_PASSWORD='xxx';
- Wed Apr :: - [info] Executing master ip online change script to allow write on the new master:
- Wed Apr :: - [info] /usr/local/bin/master_ip_online_change.pl --command=start --orig_master_host=192.168.0.50 --orig_master_ip=192.168.0.50 --orig_master_port= --new_master_host=192.168.0.60 --new_master_ip=192.168.0.60 --new_master_port=
- Wed Apr :: Set read_only= on the new master.
- Enabling the VIP - 192.168.0.88/ on the new master - 192.168.0.60
- reverse mapping checking getaddrinfo for bogon [192.168.0.60] failed - POSSIBLE BREAK-IN ATTEMPT!
- Wed Apr :: - [info] ok.
- Wed Apr :: - [info]
- Wed Apr :: - [info] * Switching slaves in parallel..
- Wed Apr :: - [info]
- Wed Apr :: - [info] -- Slave switch on host 192.168.0.70(192.168.0.70:) started, pid:
- Wed Apr :: - [info]
- Wed Apr :: - [info] Log messages from 192.168.0.70 ...
- Wed Apr :: - [info]
- Wed Apr :: - [info] Waiting to execute all relay logs on 192.168.0.70(192.168.0.70:)..
- Wed Apr :: - [info] master_pos_wait(mysql-bin.:) completed on 192.168.0.70(192.168.0.70:). Executed events.
- Wed Apr :: - [info] done.
- Wed Apr :: - [info] Resetting slave 192.168.0.70(192.168.0.70:) and starting replication from the new master 192.168.0.60(192.168.0.60:)..
- Wed Apr :: - [info] Executed CHANGE MASTER.
- Wed Apr :: - [info] Slave started.
- Wed Apr :: - [info] End of log messages from 192.168.0.70 ...
- Wed Apr :: - [info]
- Wed Apr :: - [info] -- Slave switch on host 192.168.0.70(192.168.0.70:) succeeded.
- Wed Apr :: - [info] Unlocking all tables on the orig master:
- Wed Apr :: - [info] Executing UNLOCK TABLES..
- Wed Apr :: - [info] ok.
- Wed Apr :: - [info] Starting orig master as a new slave..
- Wed Apr :: - [info] Resetting slave 192.168.0.50(192.168.0.50:) and starting replication from the new master 192.168.0.60(192.168.0.60:)..
- Wed Apr :: - [info] Executed CHANGE MASTER.
- Wed Apr :: - [info] Slave started.
- Wed Apr :: - [info] All new slave servers switched successfully.
- Wed Apr :: - [info]
- Wed Apr :: - [info] * Phase : New master cleanup phease..
- Wed Apr :: - [info]
- Wed Apr :: - [info] 192.168.0.60: Resetting slave info succeeded.
- Wed Apr :: - [info] Switching master to 192.168.0.60(192.168.0.60:) completed successfully.
其中参数的意思:
--orig_master_is_new_slave 切换时加上此参数是将原 master 变为 slave 节点,如果不加此参数,原来的 master 将不启动
--running_updates_limit=10000,故障切换时,候选master 如果有延迟的话, mha 切换不能成功,加上此参数表示延迟在此时间范围内都可切换(单位为s),但是切换的时间长短是由recover 时relay 日志的大小决定
注意:由于在线进行切换需要调用到master_ip_online_change这个脚本,但是由于该脚本不完整,需要自己进行相应的修改,我google到后发现还是有问题,脚本中new_master_password这个变量获取不到,导致在线切换失败,所以进行了相关的硬编码,直接把mysql的root用户密码赋值给变量new_master_password,如果有哪位大牛知道原因,请指点指点。这个脚本还可以管理vip。下面贴出脚本:
- #!/usr/bin/env perl
- # Copyright (C) 2011 DeNA Co.,Ltd.
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software
- # Foundation, Inc.,
- # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- ## Note: This is a sample script and is not complete. Modify the script based on your environment.
- use strict;
- use warnings FATAL => 'all';
- use Getopt::Long;
- use MHA::DBHelper;
- use MHA::NodeUtil;
- use Time::HiRes qw( sleep gettimeofday tv_interval );
- use Data::Dumper;
- my $_tstart;
- my $_running_interval = 0.1;
- my (
- $command, $orig_master_host, $orig_master_ip,
- $orig_master_port, $orig_master_user,
- $new_master_host, $new_master_ip, $new_master_port,
- $new_master_user,
- );
- my $vip = '192.168.0.88/24'; # Virtual IP
- my $key = "1";
- my $ssh_start_vip = "/sbin/ifconfig eth1:$key $vip";
- my $ssh_stop_vip = "/sbin/ifconfig eth1:$key down";
- my $ssh_user = "root";
- my $new_master_password='123456';
- my $orig_master_password='123456';
- 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,
- 'orig_master_user=s' => \$orig_master_user,
- #'orig_master_password=s' => \$orig_master_password,
- '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,
- );
- exit &main();
- sub current_time_us {
- my ( $sec, $microsec ) = gettimeofday();
- my $curdate = localtime($sec);
- return $curdate . " " . sprintf( "%06d", $microsec );
- }
- sub sleep_until {
- my $elapsed = tv_interval($_tstart);
- if ( $_running_interval > $elapsed ) {
- sleep( $_running_interval - $elapsed );
- }
- }
- sub get_threads_util {
- my $dbh = shift;
- my $my_connection_id = shift;
- my $running_time_threshold = shift;
- my $type = shift;
- $running_time_threshold = unless ($running_time_threshold);
- $type = unless ($type);
- my @threads;
- my $sth = $dbh->prepare("SHOW PROCESSLIST");
- $sth->execute();
- while ( my $ref = $sth->fetchrow_hashref() ) {
- my $id = $ref->{Id};
- my $user = $ref->{User};
- my $host = $ref->{Host};
- my $command = $ref->{Command};
- my $state = $ref->{State};
- my $query_time = $ref->{Time};
- my $info = $ref->{Info};
- $info =~ s/^\s*(.*?)\s*$/$/ if defined($info);
- next if ( $my_connection_id == $id );
- next if ( defined($query_time) && $query_time < $running_time_threshold );
- next if ( defined($command) && $command eq "Binlog Dump" );
- next if ( defined($user) && $user eq "system user" );
- next
- if ( defined($command)
- && $command eq "Sleep"
- && defined($query_time)
- && $query_time >= );
- if ( $type >= ) {
- next if ( defined($command) && $command eq "Sleep" );
- next if ( defined($command) && $command eq "Connect" );
- }
- if ( $type >= ) {
- next if ( defined($info) && $info =~ m/^select/i );
- next if ( defined($info) && $info =~ m/^show/i );
- }
- push @threads, $ref;
- }
- return @threads;
- }
- sub main {
- if ( $command eq "stop" ) {
- ## Gracefully killing connections on the current master
- # 1. Set read_only= 1 on the new master
- # 2. DROP USER so that no app user can establish new connections
- # 3. Set read_only= 1 on the current master
- # 4. Kill current queries
- # * Any database access failure will result in script die.
- my $exit_code = ;
- eval {
- ## Setting read_only=1 on the new master (to avoid accident)
- my $new_master_handler = new MHA::DBHelper();
- # args: hostname, port, user, password, raise_error(die_on_error)_or_not
- $new_master_handler->connect( $new_master_ip, $new_master_port,
- $new_master_user, $new_master_password, );
- print current_time_us() . " Set read_only on the new master.. ";
- $new_master_handler->enable_read_only();
- if ( $new_master_handler->is_read_only() ) {
- print "ok.\n";
- }
- else {
- die "Failed!\n";
- }
- $new_master_handler->disconnect();
- # Connecting to the orig master, die if any database error happens
- my $orig_master_handler = new MHA::DBHelper();
- $orig_master_handler->connect( $orig_master_ip, $orig_master_port,
- $orig_master_user, $orig_master_password, );
- ## Drop application user so that nobody can connect. Disabling per-session binlog beforehand
- #$orig_master_handler->disable_log_bin_local();
- #print current_time_us() . " Drpping app user on the orig master..\n";
- #FIXME_xxx_drop_app_user($orig_master_handler);
- ## Waiting for N * 100 milliseconds so that current connections can exit
- my $time_until_read_only = ;
- $_tstart = [gettimeofday];
- my @threads = get_threads_util( $orig_master_handler->{dbh},
- $orig_master_handler->{connection_id} );
- while ( $time_until_read_only > && $#threads >= 0 ) {
- if ( $time_until_read_only % == ) {
- printf
- "%s Waiting all running %d threads are disconnected.. (max %d milliseconds)\n",
- current_time_us(), $#threads + 1, $time_until_read_only * 100;
- if ( $#threads < 5 ) {
- print Data::Dumper->new( [$_] )->Indent()->Terse()->Dump . "\n"
- foreach (@threads);
- }
- }
- sleep_until();
- $_tstart = [gettimeofday];
- $time_until_read_only--;
- @threads = get_threads_util( $orig_master_handler->{dbh},
- $orig_master_handler->{connection_id} );
- }
- ## Setting read_only=1 on the current master so that nobody(except SUPER) can write
- print current_time_us() . " Set read_only=1 on the orig master.. ";
- $orig_master_handler->enable_read_only();
- if ( $orig_master_handler->is_read_only() ) {
- print "ok.\n";
- }
- else {
- die "Failed!\n";
- }
- ## Waiting for M * 100 milliseconds so that current update queries can complete
- my $time_until_kill_threads = ;
- @threads = get_threads_util( $orig_master_handler->{dbh},
- $orig_master_handler->{connection_id} );
- while ( $time_until_kill_threads > && $#threads >= 0 ) {
- if ( $time_until_kill_threads % == ) {
- printf
- "%s Waiting all running %d queries are disconnected.. (max %d milliseconds)\n",
- current_time_us(), $#threads + 1, $time_until_kill_threads * 100;
- if ( $#threads < 5 ) {
- print Data::Dumper->new( [$_] )->Indent()->Terse()->Dump . "\n"
- foreach (@threads);
- }
- }
- sleep_until();
- $_tstart = [gettimeofday];
- $time_until_kill_threads--;
- @threads = get_threads_util( $orig_master_handler->{dbh},
- $orig_master_handler->{connection_id} );
- }
- print "Disabling the VIP on old master: $orig_master_host \n";
- &stop_vip();
- ## Terminating all threads
- print current_time_us() . " Killing all application threads..\n";
- $orig_master_handler->kill_threads(@threads) if ( $#threads >= 0 );
- print current_time_us() . " done.\n";
- #$orig_master_handler->enable_log_bin_local();
- $orig_master_handler->disconnect();
- ## After finishing the script, MHA executes FLUSH TABLES WITH READ LOCK
- $exit_code = ;
- };
- if ($@) {
- warn "Got Error: $@\n";
- exit $exit_code;
- }
- exit $exit_code;
- }
- elsif ( $command eq "start" ) {
- ## Activating master ip on the new master
- # 1. Create app user with write privileges
- # 2. Moving backup script if needed
- # 3. Register new master's ip to the catalog database
- # We don't return error even though activating updatable accounts/ip failed so that we don't interrupt slaves' recovery.
- # If exit code is 0 or 10, MHA does not abort
- my $exit_code = ;
- eval {
- my $new_master_handler = new MHA::DBHelper();
- # args: hostname, port, user, password, raise_error_or_not
- $new_master_handler->connect( $new_master_ip, $new_master_port,
- $new_master_user, $new_master_password, );
- ## Set read_only=0 on the new master
- #$new_master_handler->disable_log_bin_local();
- print current_time_us() . " Set read_only=0 on the new master.\n";
- $new_master_handler->disable_read_only();
- ## Creating an app user on the new master
- #print current_time_us() . " Creating app user on the new master..\n";
- #FIXME_xxx_create_app_user($new_master_handler);
- #$new_master_handler->enable_log_bin_local();
- $new_master_handler->disconnect();
- ## Update master ip on the catalog database, etc
- print "Enabling the VIP - $vip on the new master - $new_master_host \n";
- &start_vip();
- $exit_code = ;
- };
- if ($@) {
- warn "Got Error: $@\n";
- exit $exit_code;
- }
- exit $exit_code;
- }
- elsif ( $command eq "status" ) {
- # do nothing
- exit ;
- }
- else {
- &usage();
- exit ;
- }
- }
- # 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 {
- "Usage: master_ip_online_change --command=start|stop|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";
- die;
- }
四.修复宕机的Master
通常情况下自动切换以后,原master可能已经废弃掉,待原master主机修复后,如果数据完整的情况下,可能想把原来master重新作为新主库的slave,这时我们可以借助当时自动切换时刻的MHA日志来完成对原master的修复。下面是提取相关日志的命令:
- [root@192.168.0.20 app1]# grep -i "All other slaves should start" manager.log
- Mon Apr :: - [info] All other slaves should start replication from here. Statement should be: CHANGE MASTER TO MASTER_HOST='192.168.0.60', MASTER_PORT=, MASTER_LOG_FILE='mysql-bin.000022', MASTER_LOG_POS=, MASTER_USER='repl', MASTER_PASSWORD='xxx';
- [root@192.168.0.20 app1]#
获取上述信息以后,就可以直接在修复后的master上执行change master to相关操作,重新作为从库了。
最后补充一下邮件发送脚本send_report ,这个脚本在询问一位朋友后可以使用,如下:
- #!/usr/bin/perl
- # Copyright (C) 2011 DeNA Co.,Ltd.
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software
- # Foundation, Inc.,
- # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- ## Note: This is a sample script and is not complete. Modify the script based on your environment.
- use strict;
- use warnings FATAL => 'all';
- use Mail::Sender;
- use Getopt::Long;
- #new_master_host and new_slave_hosts are set only when recovering master succeeded
- my ( $dead_master_host, $new_master_host, $new_slave_hosts, $subject, $body );
- my $smtp='smtp.163.com';
- my $mail_from='xxxx';
- my $mail_user='xxxxx';
- my $mail_pass='xxxxx';
- my $mail_to=['xxxx','xxxx'];
- GetOptions(
- 'orig_master_host=s' => \$dead_master_host,
- 'new_master_host=s' => \$new_master_host,
- 'new_slave_hosts=s' => \$new_slave_hosts,
- 'subject=s' => \$subject,
- 'body=s' => \$body,
- );
- mailToContacts($smtp,$mail_from,$mail_user,$mail_pass,$mail_to,$subject,$body);
- sub mailToContacts {
- my ( $smtp, $mail_from, $user, $passwd, $mail_to, $subject, $msg ) = @_;
- open my $DEBUG, "> /tmp/monitormail.log"
- or die "Can't open the debug file:$!\n";
- my $sender = new Mail::Sender {
- ctype => 'text/plain; charset=utf-8',
- encoding => 'utf-8',
- smtp => $smtp,
- from => $mail_from,
- auth => 'LOGIN',
- TLS_allowed => '0',
- authid => $user,
- authpwd => $passwd,
- to => $mail_to,
- subject => $subject,
- debug => $DEBUG
- };
- $sender->MailMsg(
- { msg => $msg,
- debug => $DEBUG
- }
- ) or print $Mail::Sender::Error;
- return ;
- }
- # Do whatever you want here
- exit ;
最后切换以后发送告警的邮件示例,注意,这个是我后续的测试,和上面环境出现的ip不一致不要在意。
总结:
目前高可用方案可以一定程度上实现数据库的高可用,比如前面文章介绍的MMM,heartbeat+drbd,Cluster等。还有percona的Galera Cluster等。这些高可用软件各有优劣。在进行高可用方案选择时,主要是看业务还有对数据一致性方面的要求。最后出于对数据库的高可用和数据一致性的要求,推荐使用MHA架构。
参考资料:
http://huoding.com/2011/12/18/139
http://blog.itpub.net/88305/viewspace-730135/
https://code.google.com/p/mysql-master-ha/wiki/TableOfContents?tm=6(自备梯子)
http://k-1-ne-jp.blogspot.com/2013/02/masterhamasterswitch_13.html(自备梯子)
MySQL高可用架构之MHA的更多相关文章
- mysql高可用架构之MHA,haproxy实现读写分离详解
MySQL高可用架构之MHA 一.运维人员需要掌握的MySQL技术: 1.基本SQL语句 2.基本的管理[库表数据的管理 权限的管理] 3.容灾 保证数据不丢失. 二.工作中MySQ ...
- (转)MySQL高可用架构之MHA
MySQL高可用架构之MHA 原文:http://www.cnblogs.com/gomysql/p/3675429.html 简介: MHA(Master High Availability)目前 ...
- 转一下大师兄的"MySQL高可用架构之MHA"
简介: MHA(Master High Availability)目前在MySQL高可用方面是一个相对成熟的解决方案,它由日本DeNA公司youshimaton(现就职于Facebook公司)开发,是 ...
- MySQL高可用架构之MHA(转)
简介: MHA(Master High Availability)目前在MySQL高可用方面是一个相对成熟的解决方案,它由日本DeNA公司youshimaton(现就职于Facebook公司)开发,是 ...
- mysql高可用架构之-MHA学习
此博文参考 博主:mysql高级DBA yayun 完成 简介: MHA(Master High Availability)目前在MySQL高可用方面是一个相对成熟的解决方案,它由日本DeNA公司 ...
- MySQL 高可用架构 之 MHA (Centos 7.5 MySQL 5.7.18 MHA 0.58)
目录 简介 环境准备 秘钥互信 安装基础依赖包 安装MHA组件 安装 MHA Node组件 安装 MHA Manager 组件 建立 MySQL 一主三从 初始化 MySQL 启动MySQL 并简单配 ...
- MySQL高可用架构之MHA 原理与实践
MHA简介 关于MHA MHA(Master HA)是一款开源的MySQL的高可用程序,它为MySQL主从复制架构提供了automating master failover 功能.MHA在监控到mas ...
- 【MySQL】MySQL高可用架构之MHA
一.关于MHA MHA(Master HA)是一款开源的MySQL的高可用程序,它为MySQL主从复制架构提供了automating master failover 功能.MHA在监控到master节 ...
- MySQL高可用系列之MHA(二)
一.參数说明 MHA提供了一系列配置參数.深入理解每一个參数的详细含义,对优化配置.合理使用MHA非常重要.非常多高可用性也都是通过合理配置一些參数而实现的. MHA包含例如以下配置參数,分别说明例如 ...
随机推荐
- 《图解Spark:核心技术与案例实战》介绍及书附资源
本书中所使用到的测试数据.代码和安装包放在百度盘提供 下载 ,地址为https://pan.baidu.com/s/1o8ydtKA 密码:imaa 另外在百度盘提供本书附录 下载 ,地址为http ...
- virtual 修饰符与继承对析构函数的影响(C++)
以前,知道了虚函数表的低效性之后,一直尽量避免使用之.所以,在最近的工程中,所有的析构函数都不是虚函数.今天趁着还书的机会到图书馆,还书之后在 TP 分类下闲逛,偶然读到一本游戏编程书,里面说建议将存 ...
- CentOS下VMware用桥接模式,静态ip上外网
15年的时候,写过一篇博客:VMware中网络设置之Bridged 也是关于linux下vmware桥接模式.静态ip上外网的配置,不过当时更多的是用图形界面来实现的,通用性不强.生产环境,极少有l ...
- 重温Bootstrap
预热 ★ 学习要点 1. 理解其GridSystem(栅格排版): 2. 熟悉其所提供的各种CSS样式及显示效果: 3. 知道提供了哪些直接可用的UI组件,以及如何使用JavaScript去调整其交互 ...
- Hibernate-chapter one
======什么是Hibernate???====== Hibernate是一个开放源代码的对象关系映射框架,它对JDBC进行了非常轻量级的对象封装,它将POJO与数据库表建立映射关系,是一个全自动的 ...
- 关于An association from the table refers to an unmapped class
今天配置SSH框架的时候出现这个异常,找了很久,才发现原来是是实体类映射文件中的<class name="Role" table="role">的n ...
- adb查询log命令
http://blog.csdn.net/fulinwsuafcie/article/details/8028572
- iscroll总结
iScroll基本信息 官网:http://cubiq.org/iscroll-4 更新:2012.07.14 版本:v4.2.5 兼容:iPhone/Ipod touch >=3.1.1, i ...
- jquery.dataTable.js 基础配置
$(document).ready(function () { $('#dataTables-example').DataTable({ responsive: true, "bPagina ...
- js严格模式总结
首先,我们要理解严格模式的概念,严格模式是一种特殊的执行模式,它修复了部分语言上的不足,提供更强的错误检查,病增强安全性.可以对部分函数进行执行严格模式,如: function func(){ 'us ...