当前位置: 首页 > news >正文

宿迁公司做网站百度域名是什么

宿迁公司做网站,百度域名是什么,百度权重是什么意思,企业培训考试系统官网系列文章目录 rpmbuild构建mysql5.7RPM安装包 MySQL基于GTID同步模式搭建主从复制 文章目录 系列文章目录前言一、MHA架构介绍1.MHA的功能2.MHA组成3.MHA故障转移过程4.MHA架构优缺点 二、环境准备1.服务器免密2.基于GTID主从复制搭建3.下载mha组件 三、MHA组件安装1.安装依赖…系列文章目录 rpmbuild构建mysql5.7RPM安装包 MySQL基于GTID同步模式搭建主从复制 文章目录 系列文章目录前言一、MHA架构介绍1.MHA的功能2.MHA组成3.MHA故障转移过程4.MHA架构优缺点 二、环境准备1.服务器免密2.基于GTID主从复制搭建3.下载mha组件 三、MHA组件安装1.安装依赖2.所有节点安装MHA node3.管理节点安装MHA manager4.daemontools工具安装 四、MHA配置1.主库配置mha用户2.生成MHA配置文件3.manager节点拷贝master_ip_failovermaster_ip_online_change文件到app1目录下并修改4.检测主机ssh与数据库复制5.主库启动VIP 五、手动切换测试1.online切换测试1.1.原主库信息查看1.2.原从库信息查看1.3.在线切换前确保 mha节点中的 manager是关闭状态1.4.开始执行在线切换命令1.5.切换结果检查 2.failover切换测试2.1.手动启动masterha_manager进程2.2.执行failover切换测试通过手动kill主库192.168.56.130的mysql进程来模拟主库挂掉2.3.此时从库192.168.56.131自动提升为新主库主库变为192.168.56.131原主库192.168.56.130起来后需要手动配置为从库 六、配置MHA守护进程七、启动mha守护进程八、启动守护进程后Failover切换测试1.manager节点上启动守护进程2.192.168.56.130主库手动kill数据库进程3.验证 总结 前言 在当今竞争激烈的商业环境中企业依赖于高效、可靠的数据管理系统来支持其运营和决策。然而数据库故障或性能瓶颈往往会对业务造成严重影响导致服务中断、数据丢失甚至客户流失。为了应对这些挑战MHAMaster High Availability架构逐渐成为企业保障数据可用性的关键解决方案。 MHA架构通过实现主数据库的高可用性确保在发生故障时能够快速自动切换到备份实例最大限度地减少停机时间。此外MHA不仅提供故障转移功能还支持在线备份和数据恢复帮助企业在突发情况下迅速恢复正常运营。这种灵活性和可靠性使得MHA成为大型分布式系统和高负载应用的理想选择。 提示以下是本篇文章正文内容下面案例可供参考 一、MHA架构介绍 MHA是Master High Availability的缩写它是目前MySQL高可用方面的一个相对成熟的解决方案其核心是使用perl语言编写的一组脚本是一套优秀的作为MySQL高可用性环境下故障切换和主从提升的高可用软件。在MySQL故障切换过程中MHA能做到在0~ 30秒之内自动完成数据库的故障切换操作并且能在最大程度上保证数据的一致性以达到真正意义上的高可用。 基于MHA的架构不像MMM那样需要搭建主主复制只需要搭建基本的主从复制架构即可。因为MHA在主库挂掉时是在多个从库中选取出一个从库作为新的主库。MHA集群中的各节点彼此之间均需要基于ssh 互信通信以实现远程控制及数据管理功能 1.MHA的功能 1、监控Master节点是否可用,当Master不可用时能在多个Slave中选举出新的Master 2、提供了主从切换和故障转移功能MHA会尝试在宕机的Master上保存binlog在最大程度上保证事务不丢失。但如果是Master所在的服务器已经无法访问或硬件层面出现了问题则无法成功保存binlog 3、MHA可以与半同步复制结合避免从库之间出现数据不一致的情况 4、支持MySQL基于GTID和基于日志点的两种复制方式 2.MHA组成 Manager节点MHA Manager 可以单独部署在一台独立的机器上管理多个 master-slave 集群也可以部署在一台 slave 节点上。MHA Manager 会定时探测集群中的 master 节点。当 master 出现故障时它可以自动将最新数据的 slave提升为新的 master 然后将所有其他的 slave 重新指向新的 master。整个故障转移过程对应用程序完全透明 Master节点主数据库。负责处理读写操作并将更改同步到备数据库。 Slave节点从数据库。与主数据库保持同步并在主数据库故障时接管其角色。3.MHA故障转移过程 1、尝试使用ssh登录到宕机崩溃的Master节点上保存二进制日志事件binlog events; 2、从多个Slave中识别含有最新更新的Slave将其作为备选的Master 3、然后基于该Slave同步差异的中继日志relaylog到其他的Slave上 4、接着同步从原Master上保存的二进制日志事件binlog events 5、将备选的Master提升为新的Master 6、使其他的Slave连接新的Master进行复制 7、在新的Master启动vip地址保证前端请求可以发送到新的Master。 4.MHA架构优缺点 优点缺点使用Perl脚本语言开发并且完全开源开发者可以根据自己的需求进行二次开发MHA默认不提供虚拟IP功能需要自行准备虚拟ip能够支持基于GTID和基于日志点的复制模式MHA启动后只会对Master进行监控不会对Slave进行监控MHA在进行故障转移时更不易产生数据丢失集群环境需要能够通过 ssh协议免密登录存在一定的安全隐患在一个监控节点上可以监控多个Replication集群MHA没有提供对Slave的读负载均衡功能需要通过第三方工具来实现 二、环境准备 mysql版本5.7.42 mha版本mha4mysql-node-0.58.tar.gz、mha4mysql-manager-0.58.tar.gz、daemontools-0.76 默认以下服务器端口通信正常、防火墙关闭、selinux关闭 ip作用部署192.168.56.130主库mysql5.7.42、mha-node192.168.56.131从库mysl5.7.42、mha-node192.168.56.132mha管理节点mha-node、mha manager、daemontools192.168.56.133vip/ 1.服务器免密 因为从第一部分就已经明确了MHA集群中的各节点彼此之间均需要基于ssh 互信通信以实现远程控制及数据管理功能所以先进行免密操作 [rootpython1 ~]# ssh-keygen -t rsa -f ~/.ssh/id_rsa -t rsa -N #生成私钥[rootpython1 ~]# ssh-copy-id -i ~/.ssh/id_rsa.pub root192.168.56.131 #将生成的公私钥传给131机器[rootpython1 ~]# ssh-copy-id -i ~/.ssh/id_rsa.pub root192.168.56.132 #将生成的公私钥传给131机器131机器如法炮制 [rootpython2 ~]# ssh-keygen -t rsa -f ~/.ssh/id_rsa -t rsa -N #生成私钥[rootpython2 ~]# ssh-copy-id -i ~/.ssh/id_rsa.pub root192.168.56.130 #将生成的公私钥传给130机器[rootpython2 ~]# ssh-copy-id -i ~/.ssh/id_rsa.pub root192.168.56.132 #将生成的公私钥传给131机器[rootpython3 ~]# ssh-keygen -t rsa -f ~/.ssh/id_rsa -t rsa -N #生成私钥[rootpython3 ~]# ssh-copy-id -i ~/.ssh/id_rsa.pub root192.168.56.130 #将生成的公私钥传给130机器[rootpython3 ~]# ssh-copy-id -i ~/.ssh/id_rsa.pub root192.168.56.131 #将生成的公私钥传给130机器免密结果验证 至此,第一步免密操作完成 2.基于GTID主从复制搭建 在此不做过多描述,搭建过程可以参考顶部两篇文章链接地址。搭建完成如下图所示至此,主从复制搭建完成 3.下载mha组件 mha-manager https://github.com/yoshinorim/mha4mysql-manager/releasesmha-node https://github.com/yoshinorim/mha4mysql-manager/releasesdaemontools工具 https://cr.yp.to/daemontools/install.html至此,组件准备完成 三、MHA组件安装 1.安装依赖 三个节点依次安装依赖包 [rootpython1 ~]# yum install -y apr bc bison dos2unix expect gcc gcc-c iftop libaio libaio-devel libarchive libev lrzsz make MySQL-python nc ncurses-devel numactl numactl-devel perl-Config-IniFiles perl-Config-Tiny perl-DBD-mysql perl-DBI perl-ExtUtils-CBuilder perl-Log-Dispatch perl-Parallel-ForkManager perl-CPAN perl-Time-HiRes perl-ExtUtils-MakeMaker perl-Digest-MD5 perl-TermReadKey pigz python python-devel python-paramiko python-requests python-setuptools python-simplejson rsync sysstat trickle vim zlib zlib-devel mysql-devel2.所有节点安装MHA node 所有mysql主从节点与manager节点均安装MHA node将软件包mha4mysql-node-0.58.tar.gz上传至/root并解压缩安装此处只演示一个节点的安装过程其余两个节点安装如法炮制即可 [rootpython1 ~]# tar xf mha4mysql-node-0.56.tar.gz [rootpython1 ~]# cd mha4mysql-node[rootpython1 mha4mysql-node]# perl Makefile.PL *** Module::AutoInstall version 1.03 *** Checking for Perl dependencies... [Core Features] - DBI ...loaded. (1.627) - DBD::mysql ...loaded. (4.023) *** Module::AutoInstall configuration finished. Checking if your kit is complete... Looks good Writing Makefile for mha4mysql::node[rootpython1 mha4mysql-node]# make cp lib/MHA/BinlogManager.pm blib/lib/MHA/BinlogManager.pm cp lib/MHA/BinlogPosFindManager.pm blib/lib/MHA/BinlogPosFindManager.pm cp lib/MHA/BinlogPosFinderXid.pm blib/lib/MHA/BinlogPosFinderXid.pm cp lib/MHA/BinlogHeaderParser.pm blib/lib/MHA/BinlogHeaderParser.pm cp lib/MHA/BinlogPosFinder.pm blib/lib/MHA/BinlogPosFinder.pm cp lib/MHA/BinlogPosFinderElp.pm blib/lib/MHA/BinlogPosFinderElp.pm cp lib/MHA/NodeUtil.pm blib/lib/MHA/NodeUtil.pm cp lib/MHA/SlaveUtil.pm blib/lib/MHA/SlaveUtil.pm cp lib/MHA/NodeConst.pm blib/lib/MHA/NodeConst.pm cp bin/filter_mysqlbinlog blib/script/filter_mysqlbinlog /usr/bin/perl -Iinc -MExtUtils::MY -e MY-fixin(shift) -- blib/script/filter_mysqlbinlog cp bin/apply_diff_relay_logs blib/script/apply_diff_relay_logs /usr/bin/perl -Iinc -MExtUtils::MY -e MY-fixin(shift) -- blib/script/apply_diff_relay_logs cp bin/purge_relay_logs blib/script/purge_relay_logs /usr/bin/perl -Iinc -MExtUtils::MY -e MY-fixin(shift) -- blib/script/purge_relay_logs cp bin/save_binary_logs blib/script/save_binary_logs /usr/bin/perl -Iinc -MExtUtils::MY -e MY-fixin(shift) -- blib/script/save_binary_logs Manifying blib/man1/filter_mysqlbinlog.1 Manifying blib/man1/apply_diff_relay_logs.1 Manifying blib/man1/purge_relay_logs.1 Manifying blib/man1/save_binary_logs.1[rootpython1 mha4mysql-node-0.58]# make install Installing /usr/local/share/perl5/MHA/NodeUtil.pm Installing /usr/local/share/perl5/MHA/SlaveUtil.pm Installing /usr/local/share/perl5/MHA/NodeConst.pm Installing /usr/local/share/man/man1/filter_mysqlbinlog.1 Installing /usr/local/share/man/man1/apply_diff_relay_logs.1 Installing /usr/local/share/man/man1/purge_relay_logs.1 Installing /usr/local/share/man/man1/save_binary_logs.1 Installing /usr/local/bin/filter_mysqlbinlog Installing /usr/local/bin/apply_diff_relay_logs Installing /usr/local/bin/purge_relay_logs Installing /usr/local/bin/save_binary_logs Appending installation info to /usr/lib64/perl5/perllocal.pod命令解释 node组件安装后也会在/usr/local/bin 下面会生成几个脚本这些工具通常由 MHAManager 的脚本触发无需人为操作主要如下: save_binary_logs 保存和复制 master 的二进制日志 apply_diff_relay_logs 识别差异的中继日志事件并将其差异的事件应用于其他的 slave filter_mysqlbinlog 去除不必要的 ROLLBACK 事件 purge_relay_logs 清除中继日志不会阻塞sql线程至此,三个节点的mha-node组件安装完成 3.管理节点安装MHA manager 只在132机器上安装 [rootpython3 ~]# tar xf mha4mysql-manager-0.58.tar.gz [rootpython3 ~]# cd mha4mysql-manager-0.58 [rootpython3 mha4mysql-manager-0.58]# ls AUTHORS bin COPYING debian inc lib Makefile.PL MANIFEST META.yml README rpm samples t tests[rootpython3 mha4mysql-manager-0.56]# perl Makefile.PL *** Module::AutoInstall version 1.03 *** Checking for Perl dependencies... [Core Features] - DBI ...loaded. (1.627) - DBD::mysql ...loaded. (4.023) - Time::HiRes ...loaded. (1.9725) - Config::Tiny ...loaded. (2.14) - Log::Dispatch ...loaded. (2.41) - Parallel::ForkManager ...loaded. (1.18) - MHA::NodeConst ...loaded. (0.58) *** Module::AutoInstall configuration finished. Checking if your kit is complete... Looks good Writing Makefile for mha4mysql::manager[rootpython3 mha4mysql-manager-0.56]# make make install cp lib/MHA/ManagerUtil.pm blib/lib/MHA/ManagerUtil.pm cp lib/MHA/Config.pm blib/lib/MHA/Config.pm cp lib/MHA/HealthCheck.pm blib/lib/MHA/HealthCheck.pm cp lib/MHA/ManagerConst.pm blib/lib/MHA/ManagerConst.pm cp lib/MHA/ServerManager.pm blib/lib/MHA/ServerManager.pm cp lib/MHA/ManagerAdmin.pm blib/lib/MHA/ManagerAdmin.pm cp lib/MHA/FileStatus.pm blib/lib/MHA/FileStatus.pm cp lib/MHA/ManagerAdminWrapper.pm blib/lib/MHA/ManagerAdminWrapper.pm cp lib/MHA/MasterFailover.pm blib/lib/MHA/MasterFailover.pm cp lib/MHA/MasterRotate.pm blib/lib/MHA/MasterRotate.pm cp lib/MHA/MasterMonitor.pm blib/lib/MHA/MasterMonitor.pm cp lib/MHA/SSHCheck.pm blib/lib/MHA/SSHCheck.pm cp lib/MHA/Server.pm blib/lib/MHA/Server.pm cp lib/MHA/DBHelper.pm blib/lib/MHA/DBHelper.pm cp bin/masterha_stop blib/script/masterha_stop /usr/bin/perl -Iinc -MExtUtils::MY -e MY-fixin(shift) -- blib/script/masterha_stop cp bin/masterha_conf_host blib/script/masterha_conf_host /usr/bin/perl -Iinc -MExtUtils::MY -e MY-fixin(shift) -- blib/script/masterha_conf_host cp bin/masterha_check_repl blib/script/masterha_check_repl /usr/bin/perl -Iinc -MExtUtils::MY -e MY-fixin(shift) -- blib/script/masterha_check_repl cp bin/masterha_check_status blib/script/masterha_check_status /usr/bin/perl -Iinc -MExtUtils::MY -e MY-fixin(shift) -- blib/script/masterha_check_status cp bin/masterha_master_monitor blib/script/masterha_master_monitor /usr/bin/perl -Iinc -MExtUtils::MY -e MY-fixin(shift) -- blib/script/masterha_master_monitor cp bin/masterha_check_ssh blib/script/masterha_check_ssh /usr/bin/perl -Iinc -MExtUtils::MY -e MY-fixin(shift) -- blib/script/masterha_check_ssh cp bin/masterha_master_switch blib/script/masterha_master_switch /usr/bin/perl -Iinc -MExtUtils::MY -e MY-fixin(shift) -- blib/script/masterha_master_switch cp bin/masterha_secondary_check blib/script/masterha_secondary_check /usr/bin/perl -Iinc -MExtUtils::MY -e MY-fixin(shift) -- blib/script/masterha_secondary_check cp bin/masterha_manager blib/script/masterha_manager /usr/bin/perl -Iinc -MExtUtils::MY -e MY-fixin(shift) -- blib/script/masterha_manager Manifying blib/man1/masterha_stop.1 Manifying blib/man1/masterha_conf_host.1 Manifying blib/man1/masterha_check_repl.1 Manifying blib/man1/masterha_check_status.1 Manifying blib/man1/masterha_master_monitor.1 Manifying blib/man1/masterha_check_ssh.1 Manifying blib/man1/masterha_master_switch.1 Manifying blib/man1/masterha_secondary_check.1 Manifying blib/man1/masterha_manager.1 Installing /usr/local/share/perl5/MHA/Config.pm Installing /usr/local/share/perl5/MHA/HealthCheck.pm Installing /usr/local/share/perl5/MHA/ManagerConst.pm Installing /usr/local/share/perl5/MHA/ServerManager.pm Installing /usr/local/share/perl5/MHA/MasterFailover.pm Installing /usr/local/share/perl5/MHA/MasterRotate.pm Installing /usr/local/share/perl5/MHA/MasterMonitor.pm Installing /usr/local/share/perl5/MHA/Server.pm Installing /usr/local/share/perl5/MHA/DBHelper.pm Installing /usr/local/share/man/man1/masterha_stop.1 Installing /usr/local/share/man/man1/masterha_conf_host.1 Installing /usr/local/share/man/man1/masterha_check_repl.1 Installing /usr/local/share/man/man1/masterha_check_status.1 Installing /usr/local/share/man/man1/masterha_master_monitor.1 Installing /usr/local/share/man/man1/masterha_check_ssh.1 Installing /usr/local/share/man/man1/masterha_master_switch.1 Installing /usr/local/share/man/man1/masterha_secondary_check.1 Installing /usr/local/share/man/man1/masterha_manager.1 Installing /usr/local/bin/masterha_stop Installing /usr/local/bin/masterha_conf_host Installing /usr/local/bin/masterha_check_repl Installing /usr/local/bin/masterha_check_status Installing /usr/local/bin/masterha_master_monitor Installing /usr/local/bin/masterha_check_ssh Installing /usr/local/bin/masterha_master_switch Installing /usr/local/bin/masterha_secondary_check Installing /usr/local/bin/masterha_manager Appending installation info to /usr/lib64/perl5/perllocal.pod[rootpython3 scripts]# pwd /root/mha4mysql-manager-0.56/samples/scripts [rootpython3 scripts]# ls master_ip_failover master_ip_online_change power_manager send_report [rootpython3 scripts]# cp -rp ./* /usr/local/bin/[rootpython3 bin]# cd /usr/local/bin/ [rootpython3 bin]# chown root.root master_ip_* [rootpython3 mha4mysql-manager-0.58]# chmod x /usr/local/bin/*命令解释 masterha_check_ssh 检查 MHA 的 SSH 配置状况 masterha_check_repl 检查 MySQL 主从复制状况 masterha_manger 启动 manager的脚本 masterha_check_status 检测当前 MHA 运行状态 masterha_master_monitor 检测 master 是否宕机 masterha_master_switch 控制故障转移自动或者手动 masterha_conf_host 添加或删除配置的 server 信息 masterha_stop 关闭manager masterha_secondary_check 从远程服务器建立tcp连接 master_ip_failover 自动切换时vip管理的脚本不是必须 master_ip_online_change 在线切换时vip的管理不是必须 power_manager 故障发生后关闭主机的脚本不是必须 send_report 因故障切换后发送报警的脚本不是必须4.daemontools工具安装 在MHA管理节点上安装deamontools来将mha作为守护进程启动 [rootpython3 ~]# tar xf daemontools-0.76.tar.gz [rootpython3 ~]# cd admin/ [rootpython3 admin]# ls daemontools-0.76 [rootpython3 admin]# cd daemontools-0.76/ [rootpython3 daemontools-0.76]# ls package src [rootpython3 daemontools-0.76]# cd package/ [rootpython3 package]# ls boot.inittab boot.rclocal commands compile files install README run run.inittab run.rclocal sharing upgrade [rootpython3 package]# pwd /root/admin/daemontools-0.76/package [rootpython3 package]# cd .. [rootpython3 daemontools-0.76]# ls package src [rootpython3 daemontools-0.76]# package/install #执行安装命令报错及解决方法 [rootpython3 daemontools-0.76]# package/install #执行安装命令报以下错误 ./load envdir unix.a byte.a /usr/bin/ld: errno: TLS definition in /lib64/libc.so.6 section .tbss mismatches non-TLS reference in envdir.o /lib64/libc.so.6: error adding symbols: Bad value collect2: error: ld returned 1 exit status make: *** [envdir] Error 1解决方法: vim /root/admin/daemontools-0.76/src/conf-cc # 在gcc 一行末尾增加 -include /usr/include/errno.h # 更改后 gcc -O2 -Wimplicit -Wunused -Wcomment -Wchar-subscripts -Wuninitialized -Wshadow -Wcast-qual -Wcast-align -Wwrite-strings -include /usr/include/errno.h#再次执行即可安装成功至此,MHA组件安装完毕 四、MHA配置 1.主库配置mha用户 mysql grant all on *.* to mha192.168.56.132 identified by jQHB31K18IBKgPsQps1Q; Query OK, 0 rows affected, 1 warning (0.44 sec)mysql flush privileges; Query OK, 0 rows affected (0.18 sec)2.生成MHA配置文件 在manager管理节点操作 #创建mha实例目录,名为app1 [rootpython3 ~]# mkdir -p /export/servers/mha/manager/app1/添加以下app.cnf文件至app1目录下 [server default] manager_workdir/export/servers/app/mha/manager/app1 #mha实例目录 manager_log/export/servers/app/mha/manager/app1/app.log remote_workdir /export/servers/app/mha/node usermha passwordjQHB31K18IBKgPsQps1Q #创建mha用户时设置的密码 repl_userrepl repl_password123456 #主从复制用户密码 ssh_userroot master_binlog_dir/export/servers/data/my3306/binlog #主库binlog日志位置 # 指定用于二次检查节点状态的脚本 secondary_check_script/usr/bin/masterha_secondary_check -s 192.168.56.130 -s 192.168.190.131 ping_interval3 master_ip_failover_script /export/servers/app/mha/manager/app1/master_ip_failover master_ip_online_change_script /export/servers/app/mha/manager/app1/master_ip_online_change#主从信息 [server1] hostname192.168.56.130 port3306 check_repl_delay 0[server2] hostname192.168.56.131 port3306 candidate_master1 check_repl_delay 03.manager节点拷贝master_ip_failovermaster_ip_online_change文件到app1目录下并修改 因为自带的这两个perl脚本不能直接使用 master_ip_failover [rootpython3 scripts]# cp -rp /usr/local/bin/master_ip_failover /export/servers/mha/manager/app1/#!/usr/bin/env perl use strict; use warnings FATAL all;use Getopt::Long; use MHA::DBHelper;my $vip 192.168.56.133; my $net_mask 255.255.255.0; my $gateway 192.168.56.2; my $device ens33; my $key 0; my $ssh_start_vip /sbin/ifconfig $device:$key $vip netmask $net_mask /sbin/arping -c 3 -s $vip -I $device $gateway; my $ssh_stop_vip /sbin/ifconfig $device:$key down; my $exit_code 0;my ($command, $ssh_user, $orig_master_host,$orig_master_ip, $orig_master_port, $new_master_host,$new_master_ip, $new_master_port, $new_master_user,$new_master_password ); GetOptions(commands \$command,ssh_users \$ssh_user,orig_master_hosts \$orig_master_host,orig_master_ips \$orig_master_ip,orig_master_porti \$orig_master_port,new_master_hosts \$new_master_host,new_master_ips \$new_master_ip,new_master_porti \$new_master_port,new_master_users \$new_master_user,new_master_passwords \$new_master_password, );exit main();sub main {if ( $command eq stop || $command eq stopssh ) {# $orig_master_host, $orig_master_ip, $orig_master_port are passed.# If you manage master ip address at global catalog database,# invalidate orig_master_ip here.my $exit_code 1;eval {print \n\n\n***************************************************************\n;print Disabling the VIP - $vip on old master: $orig_master_host\n;print ***************************************************************\n\n\n\n;stop_vip();$exit_code 0;};if ($) {warn Got Error: $\n;exit $exit_code;}exit $exit_code;}elsif ( $command eq start ) {# all arguments are passed.# If you manage master ip address at global catalog database,# activate new_master_ip here.# You can also grant write access (create user, set read_only0, etc) here.my $exit_code 10;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, 1 );## Set read_only0 on the new master$new_master_handler-disable_log_bin_local();print Set read_only0 on the new master.\n;$new_master_handler-disable_read_only();## Creating an app user on the new masterprint Creating app user on the new master..\n;$new_master_handler-enable_log_bin_local();$new_master_handler-disconnect();## Update master ip on the catalog database, etc#FIXME_xxx;print \n\n\n***************************************************************\n;print Enabling the VIP - $vip on new master: $new_master_host \n;print ***************************************************************\n\n\n\n;start_vip();$exit_code 0;};if ($) {warn $;# If you want to continue failover, exit 10.exit $exit_code;}exit $exit_code;}elsif ( $command eq status ) {# do nothingexit 0;}else {usage();exit 1;} }# A simple system call that enable the VIP on the new master sub start_vip() {ssh $ssh_user\$new_master_host \ $ssh_start_vip \; } # A simple system call that disable the VIP on the old_master sub stop_vip() {ssh $ssh_user\$orig_master_host \ $ssh_stop_vip \; }sub usage {print Usage: master_ip_failover --commandstart|stop|stopssh|status --orig_master_hosthost --orig_master_ipip --orig_master_portport --new_master_hosthost --new_master_ipip --new_master_portport\n; }master_ip_online_change [rootpython3 app1]# cp -rp /usr/local/bin/master_ip_online_change .#!/usr/bin/env perl 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 $vip 192.168.56.133; my $net_mask 255.255.255.0; my $gateway 192.168.56.2; my $device ens33; my $key 0; my $ssh_start_vip /sbin/ifconfig $device:$key $vip netmask $net_mask /sbin/arping -c 3 -s $vip -I $device $gateway; my $ssh_stop_vip /sbin/ifconfig $device:$key down; my $exit_code 0;my $_tstart; my $_running_interval 0.1; my ($command, $orig_master_is_new_slave, $orig_master_host,$orig_master_ip, $orig_master_port, $orig_master_user,$orig_master_password, $orig_master_ssh_user, $new_master_host,$new_master_ip, $new_master_port, $new_master_user,$new_master_password, $new_master_ssh_user, ); GetOptions(commands \$command,orig_master_is_new_slave \$orig_master_is_new_slave,orig_master_hosts \$orig_master_host,orig_master_ips \$orig_master_ip,orig_master_porti \$orig_master_port,orig_master_users \$orig_master_user,orig_master_passwords \$orig_master_password,orig_master_ssh_users \$orig_master_ssh_user,new_master_hosts \$new_master_host,new_master_ips \$new_master_ip,new_master_porti \$new_master_port,new_master_users \$new_master_user,new_master_passwords \$new_master_password,new_master_ssh_users \$new_master_ssh_user, );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 0 unless ($running_time_threshold);$type 0 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*$/$1/ 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 );nextif ( defined($command) $command eq Sleep defined($query_time) $query_time 1 );if ( $type 1 ) {next if ( defined($command) $command eq Sleep );next if ( defined($command) $command eq Connect );}if ( $type 2 ) {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 1;eval {## Setting read_only1 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, 1 );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 happensmy $orig_master_handler new MHA::DBHelper();$orig_master_handler-connect( $orig_master_ip, $orig_master_port,$orig_master_user, $orig_master_password, 1 );## 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 exitmy $time_until_read_only 15;$_tstart [gettimeofday];my threads get_threads_util( $orig_master_handler-{dbh},$orig_master_handler-{connection_id} );while ( $time_until_read_only 0 $#threads 0 ) {if ( $time_until_read_only % 5 0 ) {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(0)-Terse(1)-Dump . \nforeach (threads);}}sleep_until();$_tstart [gettimeofday];$time_until_read_only--;threads get_threads_util( $orig_master_handler-{dbh},$orig_master_handler-{connection_id} );}## Setting read_only1 on the current master so that nobody(except SUPER) can writeprint current_time_us() . Set read_only1 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 completemy $time_until_kill_threads 5;threads get_threads_util( $orig_master_handler-{dbh},$orig_master_handler-{connection_id} );while ( $time_until_kill_threads 0 $#threads 0 ) {if ( $time_until_kill_threads % 5 0 ) {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(0)-Terse(1)-Dump . \nforeach (threads);}}sleep_until();$_tstart [gettimeofday];$time_until_kill_threads--;threads get_threads_util( $orig_master_handler-{dbh},$orig_master_handler-{connection_id} );}## Terminating all threadsprint 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 LOCKprint \n\n\n***************************************************************\n;print Disabling the VIP - $vip on old master: $orig_master_host\n;print ***************************************************************\n\n\n\n;stop_vip();$exit_code 0;};if ($) {warn Got Error: $\n;exit $exit_code;}exit $exit_code;}elsif ( $command eq start ) {my $exit_code 10;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, 1 );## Set read_only0 on the new master$new_master_handler-disable_log_bin_local();print current_time_us() . Set read_only0 on the new master.\n;$new_master_handler-disable_read_only();## Creating an app user on the new masterprint 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, etcprint \n\n\n***************************************************************\n;print Enabling the VIP - $vip on new master: $new_master_host \n;print ***************************************************************\n\n\n\n;start_vip();$exit_code 0;};if ($) {warn Got Error: $\n;exit $exit_code;}exit $exit_code;}elsif ( $command eq status ) {# do nothingexit 0;}else {usage();exit 1;} }# A simple system call that enable the VIP on the new master sub start_vip() {ssh $new_master_ssh_user\$new_master_host \ $ssh_start_vip \; } # A simple system call that disable the VIP on the old_master sub stop_vip() {ssh $orig_master_ssh_user\$orig_master_host \ $ssh_stop_vip \; }sub usage {print Usage: master_ip_online_change --commandstart|stop|status --orig_master_hosthost --orig_master_ipip --orig_master_portport --new_master_hosthost --new_master_ipip --new_master_portport\n;die; }以上两个文件主要修改以下配置内容即可 总结:修改/export/servers/app/mha/manager/app1/master_ip_failover与/export/servers/app/mha/manager/app1/master_ip_online_change中的vipnet_mask子网掩码, gateway网关, device网卡设备, key序号记下面几个配置为实际值 my $vip 192.168.56.133; my $net_mask 255.255.255.0; my $gateway 192.168.56.1; my $device ens33; my $key 0;4.检测主机ssh与数据库复制 在manager节点执行。检查ssh是否成功 [rootpython3 app1]# masterha_check_ssh --conf/export/servers/app/mha/manager/app1/app.cnf Wed Sep 18 23:01:41 2024 - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping. Wed Sep 18 23:01:41 2024 - [info] Reading application default configuration from /export/servers/mha/manager/app1/app.cnf.. Wed Sep 18 23:01:41 2024 - [info] Reading server configuration from /export/servers/mha/manager/app1/app.cnf.. Wed Sep 18 23:01:41 2024 - [info] Starting SSH connection tests.. Wed Sep 18 23:01:43 2024 - [debug] Wed Sep 18 23:01:41 2024 - [debug] Connecting via SSH from root192.168.56.131(192.168.56.131:22) to root192.168.56.130(192.168.56.130:22).. /usr/bin/python: No module named virtualenvwrapper virtualenvwrapper.sh: There was a problem running the initialization hooks.If Python could not import the module virtualenvwrapper.hook_loader, check that virtualenvwrapper has been installed for VIRTUALENVWRAPPER_PYTHON/usr/bin/python and that PATH is set properly. Wed Sep 18 23:01:42 2024 - [debug] ok. Wed Sep 18 23:01:43 2024 - [debug] Wed Sep 18 23:01:41 2024 - [debug] Connecting via SSH from root192.168.56.130(192.168.56.130:22) to root192.168.56.131(192.168.56.131:22).. /usr/bin/python: No module named virtualenvwrapper virtualenvwrapper.sh: There was a problem running the initialization hooks.If Python could not import the module virtualenvwrapper.hook_loader, check that virtualenvwrapper has been installed for VIRTUALENVWRAPPER_PYTHON/usr/bin/python and that PATH is set properly. Wed Sep 18 23:01:42 2024 - [debug] ok. Wed Sep 18 23:01:43 2024 - [info] All SSH connection tests passed successfully.在manager节点执行。检查复制是否成功 [rootpython3 app1]# masterha_check_repl --conf/export/servers/app/mha/manager/app1/app.cnf Wed Sep 18 21:29:52 2024 - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping. Wed Sep 18 21:29:52 2024 - [info] Reading application default configuration from /export/servers/app/mha/manager/app1/app.cnf.. Wed Sep 18 21:29:52 2024 - [info] Reading server configuration from /export/servers/app/mha/manager/app1/app.cnf.. Wed Sep 18 21:29:52 2024 - [info] MHA::MasterMonitor version 0.58. Wed Sep 18 21:29:56 2024 - [info] GTID failover mode 1 Wed Sep 18 21:29:56 2024 - [info] Dead Servers: Wed Sep 18 21:29:56 2024 - [info] Alive Servers: Wed Sep 18 21:29:56 2024 - [info] 192.168.56.130(192.168.56.130:3306) Wed Sep 18 21:29:56 2024 - [info] 192.168.56.131(192.168.56.131:3306) Wed Sep 18 21:29:56 2024 - [info] Alive Slaves: Wed Sep 18 21:29:56 2024 - [info] 192.168.56.131(192.168.56.131:3306) Version5.7.42-log (oldest major version between slaves) log-bin:enabled Wed Sep 18 21:29:56 2024 - [info] GTID ON Wed Sep 18 21:29:56 2024 - [info] Replicating from 192.168.56.130(192.168.56.130:3306) Wed Sep 18 21:29:56 2024 - [info] Primary candidate for the new Master (candidate_master is set) Wed Sep 18 21:29:56 2024 - [info] Current Alive Master: 192.168.56.130(192.168.56.130:3306) Wed Sep 18 21:29:56 2024 - [info] Checking slave configurations.. Wed Sep 18 21:29:56 2024 - [info] Checking replication filtering settings.. Wed Sep 18 21:29:56 2024 - [info] binlog_do_db , binlog_ignore_db Wed Sep 18 21:29:56 2024 - [info] Replication filtering check ok. Wed Sep 18 21:29:56 2024 - [info] GTID (with auto-pos) is supported. Skipping all SSH and Node package checking. Wed Sep 18 21:29:56 2024 - [info] Checking SSH publickey authentication settings on the current master.. /usr/bin/python: No module named virtualenvwrapper virtualenvwrapper.sh: There was a problem running the initialization hooks.If Python could not import the module virtualenvwrapper.hook_loader, check that virtualenvwrapper has been installed for VIRTUALENVWRAPPER_PYTHON/usr/bin/python and that PATH is set properly. Wed Sep 18 21:29:56 2024 - [info] HealthCheck: SSH to 192.168.56.130 is reachable. Wed Sep 18 21:29:56 2024 - [info] 192.168.56.130(192.168.56.130:3306) (current master)--192.168.56.131(192.168.56.131:3306)Wed Sep 18 21:29:56 2024 - [info] Checking replication health on 192.168.56.131.. Wed Sep 18 21:29:56 2024 - [info] ok. Wed Sep 18 21:29:56 2024 - [info] Checking master_ip_failover_script status: Wed Sep 18 21:29:56 2024 - [info] /export/servers/app/mha/manager/app1/master_ip_failover --commandstatus --ssh_userroot --orig_master_host192.168.56.130 --orig_master_ip192.168.56.130 --orig_master_port3306 Wed Sep 18 21:29:56 2024 - [info] OK. Wed Sep 18 21:29:56 2024 - [warning] shutdown_script is not defined. Wed Sep 18 21:29:56 2024 - [info] Got exit code 0 (Not master dead).MySQL Replication Health is OK.5.主库启动VIP 主库服务器操作 在主库上手动启vip192.168.56.133注意将vip换成实际vip网关换成实际网关 [rootpython1 ~]# /sbin/ifconfig ens33:0 192.168.56.133/sbin/arping -I ens33 -c 3 -s 192.168.56.133 192.168.56.255 ARPING 192.168.56.255 from 192.168.56.133 ens33 Sent 3 probes (3 broadcast(s)) Received 0 response(s)执行ifconfig查看vip是否启动 [rootpython1 run]# ifconfig ens33: flags4163UP,BROADCAST,RUNNING,MULTICAST mtu 1500inet 192.168.56.130 netmask 255.255.255.0 broadcast 192.168.56.255ether 00:50:56:31:e6:79 txqueuelen 1000 (Ethernet)RX packets 177145 bytes 13064094 (12.4 MiB)RX errors 0 dropped 0 overruns 0 frame 0TX packets 879570 bytes 1920161943 (1.7 GiB)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0ens33:0: flags4163UP,BROADCAST,RUNNING,MULTICAST mtu 1500inet 192.168.56.133 netmask 255.255.255.0 broadcast 192.168.56.255ether 00:50:56:31:e6:79 txqueuelen 1000 (Ethernet)至此,vip开启成功mha配置完成 五、手动切换测试 1.online切换测试 原主库为192.168.56.130设置new_master_host192.168.56.131进行在线切换 1.1.原主库信息查看 mysql show variables like %read_only%; ------------------------------ | Variable_name | Value | ------------------------------ | innodb_read_only | OFF | | read_only | OFF | | super_read_only | OFF | | transaction_read_only | OFF | | tx_read_only | OFF | ------------------------------ 5 rows in set (0.00 sec)mysql show master status\G; *************************** 1. row ***************************File: mysql-bin.000010Position: 194Binlog_Do_DB: Binlog_Ignore_DB: Executed_Gtid_Set: eb9c1fa5-7421-11ef-a597-00505631e679:1-2005 1 row in set (0.00 sec)ERROR: No query specified#vip此时绑定在130主库机器上 [rootpython1 ~]# ip a 1: lo: LOOPBACK,UP,LOWER_UP mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00inet 127.0.0.1/8 scope host lovalid_lft forever preferred_lft foreverinet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: ens33: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc pfifo_fast state UP group default qlen 1000link/ether 00:50:56:31:e6:79 brd ff:ff:ff:ff:ff:ffinet 192.168.56.130/24 brd 192.168.56.255 scope global noprefixroute ens33valid_lft forever preferred_lft foreverinet 192.168.56.133/24 brd 192.168.56.255 scope global secondary ens33:0valid_lft forever preferred_lft foreverinet6 fe80::250:56ff:fe31:e679/64 scope link valid_lft forever preferred_lft forever1.2.原从库信息查看 mysql show variables like %read_only%; ------------------------------ | Variable_name | Value | ------------------------------ | innodb_read_only | OFF | | read_only | ON | | super_read_only | ON | | transaction_read_only | OFF | | tx_read_only | OFF | ------------------------------ 5 rows in set (0.00 sec)mysql show slave status\G; *************************** 1. row ***************************Slave_IO_State: Waiting for master to send eventMaster_Host: 192.168.56.130Master_User: replMaster_Port: 3306Connect_Retry: 60Master_Log_File: mysql-bin.000010Read_Master_Log_Pos: 194Relay_Log_File: mysqld-relay-bin.000014Relay_Log_Pos: 367Relay_Master_Log_File: mysql-bin.000010Slave_IO_Running: YesSlave_SQL_Running: Yes........1.3.在线切换前确保 mha节点中的 manager是关闭状态 [rootpython3 ~]# ps -ef |grep mha root 9233 9197 0 23:28 pts/0 00:00:00 grep --colorauto mha[rootpython3 ~]# masterha_check_status --conf/export/servers/app/mha/manager/app1/app.cnf app1 is stopped(2:NOT_RUNNING).1.4.开始执行在线切换命令 [rootpython3 ~]# masterha_master_switch --conf/export/servers/app/mha/manager/app1/app.cnf \--master_statealive --new_master_host192.168.56.131 --new_master_port3306 \--orig_master_is_new_slave --interactive0 Thu Sep 19 23:21:58 2024 - [info] MHA::MasterRotate version 0.56. Thu Sep 19 23:21:58 2024 - [info] Starting online master switch.. Thu Sep 19 23:21:58 2024 - [info] Thu Sep 19 23:21:58 2024 - [info] * Phase 1: Configuration Check Phase.. Thu Sep 19 23:21:58 2024 - [info] Thu Sep 19 23:21:58 2024 - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping. Thu Sep 19 23:21:58 2024 - [info] Reading application default configuration from /export/servers/mha/manager/app1/app.cnf.. Thu Sep 19 23:21:58 2024 - [info] Reading server configuration from /export/servers/mha/manager/app1/app.cnf.. Thu Sep 19 23:21:59 2024 - [warning] SQL Thread is stopped(no error) on 192.168.56.130(192.168.56.130:3306) Thu Sep 19 23:21:59 2024 - [info] Multi-master configuration is detected. Current primary(writable) master is 192.168.56.130(192.168.56.130:3306) Thu Sep 19 23:21:59 2024 - [info] Master configurations are as below: Master 192.168.56.130(192.168.56.130:3306), replicating from 192.168.56.131(192.168.56.131:3306) Master 192.168.56.131(192.168.56.131:3306), replicating from 192.168.56.130(192.168.56.130:3306), read-onlyThu Sep 19 23:21:59 2024 - [info] GTID failover mode 1 Thu Sep 19 23:21:59 2024 - [info] Current Alive Master: 192.168.56.130(192.168.56.130:3306) Thu Sep 19 23:21:59 2024 - [info] Alive Slaves: Thu Sep 19 23:21:59 2024 - [info] 192.168.56.131(192.168.56.131:3306) Version5.7.42-log (oldest major version between slaves) log-bin:enabled Thu Sep 19 23:21:59 2024 - [info] GTID ON Thu Sep 19 23:21:59 2024 - [info] Replicating from 192.168.56.130(192.168.56.130:3306) Thu Sep 19 23:21:59 2024 - [info] Primary candidate for the new Master (candidate_master is set) Thu Sep 19 23:21:59 2024 - [info] Executing FLUSH NO_WRITE_TO_BINLOG TABLES. This may take long time.. Thu Sep 19 23:21:59 2024 - [info] ok. Thu Sep 19 23:21:59 2024 - [info] Checking MHA is not monitoring or doing failover.. Thu Sep 19 23:21:59 2024 - [info] Checking replication health on 192.168.56.131.. Thu Sep 19 23:21:59 2024 - [info] ok. Thu Sep 19 23:21:59 2024 - [info] 192.168.56.131 can be new master. Thu Sep 19 23:21:59 2024 - [info] From: 192.168.56.130(192.168.56.130:3306) (current master)--192.168.56.131(192.168.56.131:3306)To: 192.168.56.131(192.168.56.131:3306) (new master)--192.168.56.130(192.168.56.130:3306) Thu Sep 19 23:21:59 2024 - [info] Checking whether 192.168.56.131(192.168.56.131:3306) is ok for the new master.. Thu Sep 19 23:21:59 2024 - [info] ok. Thu Sep 19 23:21:59 2024 - [info] ** Phase 1: Configuration Check Phase completed. Thu Sep 19 23:21:59 2024 - [info] Thu Sep 19 23:21:59 2024 - [info] * Phase 2: Rejecting updates Phase.. Thu Sep 19 23:21:59 2024 - [info] Thu Sep 19 23:21:59 2024 - [info] Executing master ip online change script to disable write on the current master: Thu Sep 19 23:21:59 2024 - [info] /export/servers/app/mha/manager/app1/master_ip_online_change --commandstop --orig_master_host192.168.56.130 --orig_master_ip192.168.56.130 --orig_master_port3306 --orig_master_usermha --orig_master_passwordjQHB31K18IBKgPsQps1Q --new_master_host192.168.56.131 --new_master_ip192.168.56.131 --new_master_port3306 --new_master_usermha --new_master_passwordjQHB31K18IBKgPsQps1Q --orig_master_ssh_userroot --new_master_ssh_userroot --orig_master_is_new_slave Thu Sep 19 23:22:00 2024 032251 Set read_only on the new master.. ok. Thu Sep 19 23:22:00 2024 037554 Drpping app user on the orig master.. Thu Sep 19 23:22:00 2024 038610 Waiting all running 1 threads are disconnected.. (max 1500 milliseconds) {Time 3004,db undef,Id 97,User repl,State Master has sent all binlog to slave; waiting for more updates,Command Binlog Dump GTID,Info undef,Host 192.168.56.131:42612} Thu Sep 19 23:22:00 2024 543946 Waiting all running 1 threads are disconnected.. (max 1000 milliseconds) {Time 3004,db undef,Id 97,User repl,State Master has sent all binlog to slave; waiting for more updates,Command Binlog Dump GTID,Info undef,Host 192.168.56.131:42612} Thu Sep 19 23:22:01 2024 048719 Waiting all running 1 threads are disconnected.. (max 500 milliseconds) {Time 3005,db undef,Id 97,User repl,State Master has sent all binlog to slave; waiting for more updates,Command Binlog Dump GTID,Info undef,Host 192.168.56.131:42612} Thu Sep 19 23:22:01 2024 553285 Set read_only1 on the orig master.. ok. Thu Sep 19 23:22:01 2024 557665 Waiting all running 1 queries are disconnected.. (max 500 milliseconds) {Time 3005,db undef,Id 97,User repl,State Master has sent all binlog to slave; waiting for more updates,Command Binlog Dump GTID,Info undef,Host 192.168.56.131:42612} Thu Sep 19 23:22:02 2024 058575 Killing all application threads.. Thu Sep 19 23:22:02 2024 060537 done.*************************************************************** Disabling the VIP - 192.168.56.133 on old master: 192.168.56.130 ***************************************************************/usr/bin/python: No module named virtualenvwrapper virtualenvwrapper.sh: There was a problem running the initialization hooks.If Python could not import the module virtualenvwrapper.hook_loader, check that virtualenvwrapper has been installed for VIRTUALENVWRAPPER_PYTHON/usr/bin/python and that PATH is set properly. Thu Sep 19 23:22:02 2024 - [info] ok. Thu Sep 19 23:22:02 2024 - [info] Locking all tables on the orig master to reject updates from everybody (including root): Thu Sep 19 23:22:02 2024 - [info] Executing FLUSH TABLES WITH READ LOCK.. Thu Sep 19 23:22:02 2024 - [info] ok. Thu Sep 19 23:22:02 2024 - [info] Orig master binlog:pos is mysql-bin.000010:194. Thu Sep 19 23:22:02 2024 - [info] Waiting to execute all relay logs on 192.168.56.131(192.168.56.131:3306).. Thu Sep 19 23:22:02 2024 - [info] master_pos_wait(mysql-bin.000010:194) completed on 192.168.56.131(192.168.56.131:3306). Executed 0 events. Thu Sep 19 23:22:02 2024 - [info] done. Thu Sep 19 23:22:02 2024 - [info] Getting new masters binlog name and position.. Thu Sep 19 23:22:02 2024 - [info] mysql-bin.000005:194 Thu Sep 19 23:22:02 2024 - [info] All other slaves should start replication from here. Statement should be: CHANGE MASTER TO MASTER_HOST192.168.56.131, MASTER_PORT3306, MASTER_AUTO_POSITION1, MASTER_USERrepl, MASTER_PASSWORDxxx; Thu Sep 19 23:22:02 2024 - [info] Executing master ip online change script to allow write on the new master: Thu Sep 19 23:22:02 2024 - [info] /export/servers/app/mha/manager/app1/master_ip_online_change --commandstart --orig_master_host192.168.56.130 --orig_master_ip192.168.56.130 --orig_master_port3306 --orig_master_usermha --orig_master_passwordjQHB31K18IBKgPsQps1Q --new_master_host192.168.56.131 --new_master_ip192.168.56.131 --new_master_port3306 --new_master_usermha --new_master_passwordjQHB31K18IBKgPsQps1Q --orig_master_ssh_userroot --new_master_ssh_userroot --orig_master_is_new_slave Thu Sep 19 23:22:02 2024 621597 Set read_only0 on the new master. Thu Sep 19 23:22:02 2024 623264 Creating app user on the new master.. *************************************************************** Enabling the VIP - 192.168.56.133 on new master: 192.168.56.131 *************************************************************** Thu Sep 19 23:22:05 2024 - [info] ok. Thu Sep 19 23:22:05 2024 - [info] Thu Sep 19 23:22:05 2024 - [info] * Switching slaves in parallel.. Thu Sep 19 23:22:05 2024 - [info] Thu Sep 19 23:22:05 2024 - [info] Unlocking all tables on the orig master: Thu Sep 19 23:22:05 2024 - [info] Executing UNLOCK TABLES.. Thu Sep 19 23:22:05 2024 - [info] ok. Thu Sep 19 23:22:05 2024 - [info] Starting orig master as a new slave.. Thu Sep 19 23:22:05 2024 - [info] Resetting slave 192.168.56.130(192.168.56.130:3306) and starting replication from the new master 192.168.56.131(192.168.56.131:3306).. Thu Sep 19 23:22:05 2024 - [info] Executed CHANGE MASTER. Thu Sep 19 23:22:05 2024 - [info] Slave started. Thu Sep 19 23:22:05 2024 - [info] All new slave servers switched successfully. Thu Sep 19 23:22:05 2024 - [info] Thu Sep 19 23:22:05 2024 - [info] * Phase 5: New master cleanup phase.. Thu Sep 19 23:22:05 2024 - [info] Thu Sep 19 23:22:06 2024 - [info] 192.168.56.131: Resetting slave info succeeded. Thu Sep 19 23:22:06 2024 - [info] Switching master to 192.168.56.131(192.168.56.131:3306) completed successfully.当出现Switching master to 192.168.56.131(192.168.56.131:3306) completed successfully.字样代表在线切换成功接着可以检查新主从库的相关信息 1.5.切换结果检查 检查192.168.56.131是否为新主库 mysql show slave status\G; #当在192.168.56.131执行查看slave状态信息时提示为空 Empty set (0.00 sec)ERROR: No query specifiedmysql show master status\G; *************************** 1. row ***************************File: mysql-bin.000005Position: 194Binlog_Do_DB: Binlog_Ignore_DB: Executed_Gtid_Set: eb9c1fa5-7421-11ef-a597-00505631e679:1-2005 1 row in set (0.00 sec)ERROR: No query specifiedmysql show variables like %read_only%; ------------------------------ | Variable_name | Value | ------------------------------ | innodb_read_only | OFF | | read_only | OFF | | super_read_only | OFF | | transaction_read_only | OFF | | tx_read_only | OFF | ------------------------------ 5 rows in set (0.00 sec)同时vip192.168.56.133也漂移到了131机器上 检查192.168.56.130是否为新从库 mysql show variables like %read_only%; ------------------------------ | Variable_name | Value | ------------------------------ | innodb_read_only | OFF | | read_only | ON | | super_read_only | ON | | transaction_read_only | OFF | | tx_read_only | OFF | ------------------------------ 5 rows in set (0.00 sec)mysql show slave status\G; *************************** 1. row ***************************Slave_IO_State: Waiting for master to send eventMaster_Host: 192.168.56.131Master_User: replMaster_Port: 3306Connect_Retry: 60Master_Log_File: mysql-bin.000005Read_Master_Log_Pos: 194Relay_Log_File: mysqld-relay-bin.000002Relay_Log_Pos: 367Relay_Master_Log_File: mysql-bin.000005Slave_IO_Running: YesSlave_SQL_Running: Yes......................此时在线切换演示完成同理也可以将新主库192.168.56.131切换为192.168.56.130只需要替换--new_master_host192.168.56.130这个即可检查切换是否成功也用如上方法即可 2.failover切换测试 2.1.手动启动masterha_manager进程 [rootpython3 app1]# masterha_manager --conf/export/servers/app/mha/manager/app1/app.cnf Thu Sep 19 11:26:41 2024 - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping. Thu Sep 19 11:26:41 2024 - [info] Reading application default configuration from /export/servers/app/mha/manager/app1/app.cnf.. Thu Sep 19 11:26:41 2024 - [info] Reading server configuration from /export/servers/app/mha/manager/app1/app.cnf.. Thu Sep 19 11:27:25 2024 - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping. Thu Sep 19 11:27:25 2024 - [info] Reading application default configuration from /export/servers/app/mha/manager/app1/app.cnf.. Thu Sep 19 11:27:25 2024 - [info] Reading server configuration from /export/servers/app/mha/manager/app1/app.cnf..2.2.执行failover切换测试通过手动kill主库192.168.56.130的mysql进程来模拟主库挂掉 [rootpython1 ~]# kill -9 主库进程pid2.3.此时从库192.168.56.131自动提升为新主库主库变为192.168.56.131原主库192.168.56.130起来后需要手动配置为从库 #在192.168.56.130机器上操作 mysql change master to master_host192.168.56.131, master_port3306, master_userrepl , master_password123456 ,master_auto_position1; Query OK, 0 rows affected, 2 warnings (0.05 sec)mysql show slave status\G; *************************** 1. row ***************************Slave_IO_State: Waiting for master to send eventMaster_Host: 192.168.56.131Master_User: replMaster_Port: 3306Connect_Retry: 60Master_Log_File: mysql-bin.000002Read_Master_Log_Pos: 194Relay_Log_File: mysqld-relay-bin.000002Relay_Log_Pos: 367Relay_Master_Log_File: mysql-bin.000002Slave_IO_Running: YesSlave_SQL_Running: Yes注意: 发生一次切换后masterha_manager进程自动停止。此时去manager节点查看manager进程发现不存在 [rootpython3 app1]# ps -ef |grep manager root 9821 3952 0 11:29 pts/0 00:00:00 grep --colorauto manager六、配置MHA守护进程 创建实例app1的守护进程文件即/export/servers/mha/manager/app1/run文件 [rootpython3 ~]# cat /export/servers/app/mha/manager/app1/run EOF#!/bin/shexec masterha_manager --conf/export/servers/app/mha/manager/app1/app.cnf --wait_on_monitor_error60 --wait_on_failover_error60 /export/servers/app/mha/manager/app1/app.log 21EOF给run文件授权 [rootpython3 ~]# chmod 755 /export/servers/app/mha/manager/app1/run七、启动mha守护进程 配置完成后即可使用daemontool来启动/停止mha监控进程 启动mha监控 [rootpython3 ~]# svc -u /export/servers/app/mha/manager/app1/ svc: warning: unable to control /export/servers/app/mha/manager/app1/: file does not exist 启动的时候如果报下面的错误 svc: warning: unable to control /export/servers/app/mha/manager/app1/: file does not exist按照下面解决 [rootpython3 app1]# nohup supervise /export/servers/app/mha/manager/app1/ svsrun.log 21 直接使用上面的supervise启动然后会自动生成supervise目录我们就可以使用svc命令了停止mha监控 [rootpython3 ~]# svc -d /export/servers/mha/manager/app1/[rootpython3 app1]# ps -ef |grep mha root 10525 10419 0 11:51 pts/0 00:00:00 supervise /export/servers/app/mha/manager/app1/ root 10526 10525 4 11:51 pts/0 00:00:00 perl /usr/local/bin/masterha_manager --conf/export/servers/app/mha/manager/app1/app.cnf --wait_on_monitor_error60 --wait_on_failover_error60[rootpython3 app1]# svc -d /export/servers/app/m mha/ mysql-5.7.42/ [rootpython3 app1]# svc -d /export/servers/mha/manager/app1/ #停止守护进程 [rootpython3 app1]# ps -ef |grep mha root 10525 10419 0 11:51 pts/0 00:00:00 supervise /export/servers/mha/manager/app1/ root 10629 10419 0 11:53 pts/0 00:00:00 grep --colorauto mha八、启动守护进程后Failover切换测试 mha监控进程作为守护进程启动后我们需要测试mysql故障后是否能够自动切换这里我们还是手动杀掉192.168.56.131主库上的mysql进程此时从库192.168.56.130自动提升为新主库主库变为192.168.56.130自动切换成功待原主库192.168.56.131起来后需要手动重新配置为从库 1.manager节点上启动守护进程 [rootpython3 ~]# svc -u /export/servers/app/mha/manager/app1/ [rootpython3 ~]# ps -ef |grep mha root 9692 9691 1 23:44 pts/0 00:00:00 perl /usr/local/bin/masterha_manager --conf/export/servers/app/mha/manager/app1/app.cnf --wait_on_monitor_error60 --wait_on_failover_error60[rootpython3 app1]# masterha_check_status --conf/export/servers/app/mha/manager/app1/app.cnf app (pid:10712) is running(0:PING_OK), master:192.168.56.1302.192.168.56.130主库手动kill数据库进程 [rootpython1 ~]# ps -ef |grep mysql root 4028 1 0 22:09 pts/0 00:00:00 /bin/sh /export/servers/app/mysql-5.7.42/bin/mysqld_safe --defaults-file/export/servers/data/my3306/my.cnf --usermysql mysql 5483 4028 0 22:10 pts/0 00:00:14 /export/servers/app/mysql-5.7.42/bin/mysqld --defaults-file/export/servers/data/my3306/my.cnf --basedir/export/servers/app/mysql-5.7.42 --datadir/export/servers/data/my3306/data --plugin-dir/export/servers/app/mysql-5.7.42/lib/plugin --usermysql --log-error/export/servers/data/my3306/log/mysqld-err.log --open-files-limit655340 --pid-file/export/servers/data/my3306/run/mysqld.pid --socket/export/servers/data/my3306/run/mysqld.sock --port3306 [rootpython1 mha4mysql-node-0.56]# kill -9 4028 5483 3.验证 kill原主库192.168.56.130mysql进程后,vip漂移到了192.168.56.131机器上,如下所示 原主库192.168.56.130起来后需要手动重新配置为从库 [rootpython1 ~]# mysql -uroot -p -S /export/servers/data/my3306/run/mysqld.sock Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.42-log Source distributionCopyright (c) 2000, 2023, Oracle and/or its affiliates.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 change master to master_host192.168.56.131, master_port3306,master_userrepl,master_password123456 ,master_auto_position1; Query OK, 0 rows affected, 2 warnings (0.05 sec)mysql start slave; Query OK, 0 rows affected (0.05 sec)mysql show slave status\G; *************************** 1. row ***************************Slave_IO_State: Master_Host: 192.168.56.131Master_User: replMaster_Port: 3306Connect_Retry: 60Master_Log_File: Read_Master_Log_Pos: 4Relay_Log_File: mysqld-relay-bin.000001Relay_Log_Pos: 4Relay_Master_Log_File: Slave_IO_Running: YesSlave_SQL_Running: Yes也可以观察mha日志/export/servers/app/mha/manager/app1/app.log是否有错误信息。 因为这个app.log日志在上述第六部分配置MHA守护进程进行了配置,也可以查看日志总结 以上就是要分享的内容实现了一主一从一MHA的搭建过程并实现了在线主从切换测试、主库宕机离线测试等功能它还有具体的命令使用方法等后续完善!!!
http://www.hkea.cn/news/14285030/

相关文章:

  • 机场建设投资公司官方网站山西建网站
  • 网站推广合作响应式设计是什么意思
  • 潮州市住房和城乡建设局网站做销售记住这十句口诀
  • 网站建设百度优化高性能网站建设进阶
  • 考试网站怎么做的wordpress不居中
  • 网站参考页面设计网络营销的分类
  • 推荐网站建设服务话术网站建设的经费预算报告
  • 全国各大网站开发免费app
  • p2p做网站百度本地推广
  • 响应式设计的网站docker实际企业解决方案
  • 建设品牌网站自己的网站怎么赚钱
  • 网站后台添加投票系统汽车4s店网站建设方案
  • 做网站可行性分析做网站需要买多大空间
  • 企业网站有哪些功能北京vi设计公司广州标志设计
  • 百度四川建设厅网站百度搜索排名购买
  • 东营网站建设推广公司网站被百度收录吗
  • 网站建设哪家最好用wordpress自定义布局
  • 做家具有那个网站好手机百度怎么翻译网页
  • 杭州精品课程网站建设用asp做的大型网站
  • 酒店网站建设的基本内容建设网站要求
  • 网站树状型结构优化彩票网站搭建
  • 四川专业网站建设公司移动端原型
  • 百度免费网站申请现在开天猫店需要多少钱
  • 做电力 公司网站那间公司做网站好
  • 棋牌网站代理北京网站优化合作
  • 网站内容一样影响收录淘宝客网站应该怎么做
  • 代刷网站只做软件下载网站开发协议范本
  • 承德建设网站wordpress+discuz+seo
  • 浙江金顶建设公司网站会员卡管理系统怎么开通
  • 怎么做教育网站做网站关键词要懂代码么