配置环境:
版本:redhat6.5
master:server1(172.25.254.1)
Candicate slave:server2(172.25.254.2)
slave:server3(172.25.254.3)
manager:server4(172.25.254.4)
一、搭建主从复制
1、master机搭建
[root@server1 ~]# mysql -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 7
Server version: 5.7.17-log MySQL Community Server (GPL)
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show master status;
+------------------+----------+--------------+------------------+------------------------------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+------------------------------------------+
| mysql-bin.000002 | 710 | | | f41fd867-8519-11e8-a35f-52540099c29d:1-3 |
+------------------+----------+--------------+------------------+------------------------------------------+
1 row in set (0.00 sec)
mysql> grant replication slave on *.* to wuyanzu@'172.25.254.%' identified by 'westos';
Query OK, 0 rows affected, 1 warning (0.09 sec)
mysql> show master status;
+------------------+----------+--------------+------------------+------------------------------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+------------------------------------------+
| mysql-bin.000002 | 1007 | | | f41fd867-8519-11e8-a35f-52540099c29d:1-4 |
+------------------+----------+--------------+------------------+------------------------------------------+
1 row in set (0.00 sec)
2、slave机搭建(server2同server3)
[root@server2 mysql]# mysql -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 7
Server version: 5.7.17-log MySQL Community Server (GPL)
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> change master to master_host='172.25.254.1',master_user='wuyanzu',master_password='westos',master_auto_position=1;
Query OK, 0 rows affected, 2 warnings (0.68 sec)
mysql> start slave;
Query OK, 0 rows affected (0.03 sec)
mysql> show slave status\G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 172.25.254.1
Master_User: wuyanzu
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000002
Read_Master_Log_Pos: 1007
Relay_Log_File: server2-relay-bin.000002
Relay_Log_Pos: 1220
Relay_Master_Log_File: mysql-bin.000002
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
二、安装MHA软件
1、3个节点安装
mha4mysql-node-0.56-0.el6.noarch.rpm
server1,server2和server3都安装
[root@server1 mha]# rpm -qa | grep mha4 ##安装的mha node软件
mha4mysql-node-0.56-0.el6.noarch
[root@server1 mha]# rpm -qa | grep perl ##需要的依赖包
perl-DBD-MySQL-4.013-3.el6.x86_64
perl-Pod-Escapes-1.04-136.el6.x86_64
perl-Pod-Simple-3.13-136.el6.x86_64
perl-Module-Pluggable-3.90-136.el6.x86_64
perl-DBI-1.609-4.el6.x86_64
perl-Error-0.17015-4.el6.noarch
perl-Git-1.7.1-3.el6_4.1.noarch
perl-libs-5.10.1-136.el6.x86_64
perl-version-0.77-136.el6.x86_64
perl-5.10.1-136.el6.x86_64
2、管理节点安装manager
[root@server4 ~]# rpm -qa | grep mha
mha4mysql-manager-0.56-0.el6.noarch
[root@server4 ~]# rpm -qa | grep perl
perl-DBI-1.609-4.el6.x86_64
perl-Digest-SHA-5.47-136.el6.x86_64
perl-ExtUtils-ParseXS-2.2003.0-136.el6.x86_64
perl-devel-5.10.1-136.el6.x86_64
perl-Email-Date-Format-1.002-5.el6.noarch
perl-TimeDate-1.16-11.1.el6.noarch
perl-MIME-Lite-3.027-2.el6.noarch
perl-Parallel-ForkManager-0.7.9-1.el6.noarch
perl-Log-Dispatch-2.27-1.el6.noarch
perl-Pod-Escapes-1.04-136.el6.x86_64
perl-Pod-Simple-3.13-136.el6.x86_64
perl-Module-Pluggable-3.90-136.el6.x86_64
perl-DBD-MySQL-4.013-3.el6.x86_64
perl-Test-Harness-3.17-136.el6.x86_64
perl-ExtUtils-MakeMaker-6.55-136.el6.x86_64
perl-CPAN-1.9402-136.el6.x86_64
perl-MIME-Types-1.28-2.el6.noarch
perl-Config-Tiny-2.12-7.1.el6.noarch
perl-MailTools-2.04-4.el6.noarch
perl-Mail-Sender-0.8.16-3.el6.noarch
perl-Params-Validate-0.92-3.el6.x86_64
perl-Mail-Sendmail-0.79-12.el6.noarch
perl-Time-HiRes-1.9721-136.el6.x86_64
perl-libs-5.10.1-136.el6.x86_64
perl-version-0.77-136.el6.x86_64
perl-5.10.1-136.el6.x86_64
3、免密配置
1、方法1
[root@server4 ~]# ssh-keygen
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
/root/.ssh/id_rsa already exists.
Overwrite (y/n)? y
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
11:bd:98:f5:22:27:33:a0:df:46:85:de:cd:7d:1c:b4 root@server4
The key's randomart image is:
+--[ RSA 2048]----+
| .o .. |
| . ..+ ..|
| . o.* = . E.|
| . X.= + . o|
| . oS* . . |
| . o |
| . |
| |
| |
+-----------------+
[root@server4 ~]# cd /root/.ssh/
[root@server4 .ssh]# yum install -y rsync
[root@server4 .ssh]# ssh-copy-id server4
The authenticity of host 'server4 (172.25.254.4)' can't be established.
RSA key fingerprint is 57:9d:a3:b0:00:cb:7e:c0:8a:a5:75:55:de:53:19:7b.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'server4,172.25.254.4' (RSA) to the list of known hosts.
root@server4's password:
Now try logging into the machine, with "ssh 'server4'", and check in:
.ssh/authorized_keys
to make sure we haven't added extra keys that you weren't expecting.
[root@server4 .ssh]# rsync -p * server1:/root/.ssh/
root@server1's password:
[root@server4 .ssh]# rsync -p * server2:/root/.ssh/
root@server2's password:
[root@server4 .ssh]# rsync -p * server3:/root/.ssh/
root@server3's password:
[root@server4 .ssh]# ssh server1
[root@server1 ~]# logout
Connection to server1 closed.
[root@server4 .ssh]# ssh server2
Last login: Wed Jul 11 23:34:42 2018 from server1
[root@server2 ~]# logout
Connection to server2 closed.
[root@server4 .ssh]# ssh server3
Last login: Wed Jul 11 23:35:15 2018 from server4
[root@server3 ~]# logout
Connection to server3 closed.
其他三台主机也ssh测试连接是否免密
方法2:
四台机子都需要配置比较麻烦
[root@server1 ~]# ssh-keygen -t rsa ##Enter 即可,选择默认方式
[root@server1 ~]# ssh-copy-id -i .ssh/id_rsa.pub root@172.25.254.2
[root@server1 ~]# ssh-copy-id -i .ssh/id_rsa.pub root@172.25.254.3
[root@server1 ~]# ssh-copy-id -i .ssh/id_rsa.pub root@172.25.254.4
三、mha配置
1、manage节点配置
[root@server4 masterha]# pwd
/etc/masterha ##此目录为mkdir目录
[root@server4 masterha]# vim app.cnf
[server default]
manager_log=/etc/masterha/mha.log
manager_workdir=/etc/masterha/
master_binlog_dir=/var/lib/mysql
#master_ip_online_change_script=/etc/masterha/master_ip_online_change
password=westos
ping_interval=1
remote_workdir=/tmp
repl_password=westos
repl_user=wuyanzu
ssh_user=root
user=root
[server1]
hostname=172.25.254.1
port=3306
[server2]
candidate_master=1
check_repl_delay=0
hostname=172.25.254.2
port=3306
[server3]
hostname=172.25.254.3
port=3306
2、slave节点配置
server2和server3配置relay log的清除方式和slave配置只读,但不要写入配置文件,因为master机down掉后可能随时会升级成master,
[root@server2 mysql]# mysql -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 11
Server version: 5.7.17-log MySQL Community Server (GPL)
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> set global relay_log_purge=0;
Query OK, 0 rows affected (0.00 sec)
mysql> set global read_only=on;
Query OK, 0 rows affected (0.00 sec)
3、检测ssh配置
[root@server4 ~]# masterha_check_ssh --conf=/etc/masterha/app.cnf
Wed Jul 11 23:55:26 2018 - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Wed Jul 11 23:55:26 2018 - [info] Reading application default configuration from /etc/masterha/app.cnf..
Wed Jul 11 23:55:26 2018 - [info] Reading server configuration from /etc/masterha/app.cnf..
Wed Jul 11 23:55:26 2018 - [info] Starting SSH connection tests..
Wed Jul 11 23:55:26 2018 - [debug]
Wed Jul 11 23:55:26 2018 - [debug] Connecting via SSH from root@172.25.254.1(172.25.254.1:22) to root@172.25.254.2(172.25.254.2:22)..
Wed Jul 11 23:55:26 2018 - [debug] ok.
Wed Jul 11 23:55:26 2018 - [debug] Connecting via SSH from root@172.25.254.1(172.25.254.1:22) to root@172.25.254.3(172.25.254.3:22)..
Wed Jul 11 23:55:26 2018 - [debug] ok.
Wed Jul 11 23:55:27 2018 - [debug]
Wed Jul 11 23:55:26 2018 - [debug] Connecting via SSH from root@172.25.254.2(172.25.254.2:22) to root@172.25.254.1(172.25.254.1:22)..
Wed Jul 11 23:55:26 2018 - [debug] ok.
Wed Jul 11 23:55:26 2018 - [debug] Connecting via SSH from root@172.25.254.2(172.25.254.2:22) to root@172.25.254.3(172.25.254.3:22)..
Wed Jul 11 23:55:27 2018 - [debug] ok.
Wed Jul 11 23:55:27 2018 - [debug]
Wed Jul 11 23:55:27 2018 - [debug] Connecting via SSH from root@172.25.254.3(172.25.254.3:22) to root@172.25.254.1(172.25.254.1:22)..
Wed Jul 11 23:55:27 2018 - [debug] ok.
Wed Jul 11 23:55:27 2018 - [debug] Connecting via SSH from root@172.25.254.3(172.25.254.3:22) to root@172.25.254.2(172.25.254.2:22)..
Wed Jul 11 23:55:27 2018 - [debug] ok.
Wed Jul 11 23:55:27 2018 - [info] All SSH connection tests passed successfully.
4、检测repl环境
注意报错
[root@server4 ~]# masterha_check_repl --conf=/etc/masterha/app.cnf
Wed Jul 11 23:56:50 2018 - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Wed Jul 11 23:56:50 2018 - [info] Reading application default configuration from /etc/masterha/app.cnf..
Wed Jul 11 23:56:50 2018 - [info] Reading server configuration from /etc/masterha/app.cnf..
Wed Jul 11 23:56:50 2018 - [info] MHA::MasterMonitor version 0.56.
Wed Jul 11 23:56:50 2018 - [error][/usr/share/perl5/vendor_perl/MHA/ServerManager.pm, ln301] Got MySQL error when connecting 172.25.254.2(172.25.254.2:3306) :1045:Access denied for user 'root'@'server4' (using password: YES), but this is not a MySQL crash. Check MySQL server settings.
at /usr/share/perl5/vendor_perl/MHA/ServerManager.pm line 297
Wed Jul 11 23:56:50 2018 - [error][/usr/share/perl5/vendor_perl/MHA/ServerManager.pm, ln301] Got MySQL error when connecting 172.25.254.3(172.25.254.3:3306o_master=1) :1045:Access denied for user 'root'@'server4' (using password: YES), but this is not a MySQL crash. Check MySQL server settings.
at /usr/share/perl5/vendor_perl/MHA/ServerManager.pm line 297
Wed Jul 11 23:56:50 2018 - [error][/usr/share/perl5/vendor_perl/MHA/ServerManager.pm, ln301] Got MySQL error when connecting 172.25.254.1(172.25.254.1:3306) :1045:Access denied for user 'root'@'server4' (using password: YES), but this is not a MySQL crash. Check MySQL server settings.
at /usr/share/perl5/vendor_perl/MHA/ServerManager.pm line 297
Wed Jul 11 23:56:50 2018 - [error][/usr/share/perl5/vendor_perl/MHA/ServerManager.pm, ln309] Got fatal error, stopping operations
Wed Jul 11 23:56:50 2018 - [error][/usr/share/perl5/vendor_perl/MHA/MasterMonitor.pm, ln424] Error happened on checking configurations. at /usr/share/perl5/vendor_perl/MHA/MasterMonitor.pm line 326
Wed Jul 11 23:56:50 2018 - [error][/usr/share/perl5/vendor_perl/MHA/MasterMonitor.pm, ln523] Error happened on monitoring servers.
Wed Jul 11 23:56:50 2018 - [info] Got exit code 1 (Not master dead).
MySQL Replication Health is NOT OK!
[root@server4 ~]# vim /etc/masterha/app.
[root@server4 ~]# vim /etc/masterha/app.cnf
[root@server4 ~]# masterha_check_repl --conf=/etc/masterha/app.cnf
Thu Jul 12 00:00:50 2018 - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Thu Jul 12 00:00:50 2018 - [info] Reading application default configuration from /etc/masterha/app.cnf..
Thu Jul 12 00:00:50 2018 - [info] Reading server configuration from /etc/masterha/app.cnf..
Thu Jul 12 00:00:50 2018 - [info] MHA::MasterMonitor version 0.56.
Thu Jul 12 00:00:50 2018 - [error][/usr/share/perl5/vendor_perl/MHA/ServerManager.pm, ln301] Got MySQL error when connecting 172.25.254.3(172.25.254.3:3306o_master=1) :1045:Access denied for user 'root'@'server4' (using password: YES), but this is not a MySQL crash. Check MySQL server settings.
at /usr/share/perl5/vendor_perl/MHA/ServerManager.pm line 297
Thu Jul 12 00:00:50 2018 - [error][/usr/share/perl5/vendor_perl/MHA/ServerManager.pm, ln301] Got MySQL error when connecting 172.25.254.2(172.25.254.2:3306) :1045:Access denied for user 'root'@'server4' (using password: YES), but this is not a MySQL crash. Check MySQL server settings.
at /usr/share/perl5/vendor_perl/MHA/ServerManager.pm line 297
Thu Jul 12 00:00:50 2018 - [error][/usr/share/perl5/vendor_perl/MHA/ServerManager.pm, ln301] Got MySQL error when connecting 172.25.254.1(172.25.254.1:3306) :1045:Access denied for user 'root'@'server4' (using password: YES), but this is not a MySQL crash. Check MySQL server settings.
at /usr/share/perl5/vendor_perl/MHA/ServerManager.pm line 297
Thu Jul 12 00:00:50 2018 - [error][/usr/share/perl5/vendor_perl/MHA/ServerManager.pm, ln309] Got fatal error, stopping operations
Thu Jul 12 00:00:50 2018 - [error][/usr/share/perl5/vendor_perl/MHA/MasterMonitor.pm, ln424] Error happened on checking configurations. at /usr/share/perl5/vendor_perl/MHA/MasterMonitor.pm line 326
Thu Jul 12 00:00:50 2018 - [error][/usr/share/perl5/vendor_perl/MHA/MasterMonitor.pm, ln523] Error happened on monitoring servers.
Thu Jul 12 00:00:50 2018 - [info] Got exit code 1 (Not master dead).
MySQL Replication Health is NOT OK!
解决方法:master机给与监控权限
[root@server1 ~]# mysql -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 14
Server version: 5.7.17-log MySQL Community Server (GPL)
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> grant all on *.* to root@'172.25.254.%' identified by 'westos';
Query OK, 0 rows affected, 1 warning (0.13 sec)
继续查看
[root@server4 ~]# masterha_check_repl --conf=/etc/masterha/app.cnf
Thu Jul 12 00:04:51 2018 - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Thu Jul 12 00:04:51 2018 - [info] Reading application default configuration from /etc/masterha/app.cnf..
Thu Jul 12 00:04:51 2018 - [info] Reading server configuration from /etc/masterha/app.cnf..
Thu Jul 12 00:04:51 2018 - [info] MHA::MasterMonitor version 0.56.
Thu Jul 12 00:04:51 2018 - [info] GTID failover mode = 1
Thu Jul 12 00:04:51 2018 - [info] Dead Servers:
Thu Jul 12 00:04:51 2018 - [info] Alive Servers:
Thu Jul 12 00:04:51 2018 - [info] 172.25.254.1(172.25.254.1:3306)
Thu Jul 12 00:04:51 2018 - [info] 172.25.254.2(172.25.254.2:3306)
Thu Jul 12 00:04:51 2018 - [info] 172.25.254.3(172.25.254.3:3306o_master=1)
Thu Jul 12 00:04:51 2018 - [info] Alive Slaves:
Thu Jul 12 00:04:51 2018 - [info] 172.25.254.2(172.25.254.2:3306) Version=5.7.17-log (oldest major version between slaves) log-bin:enabled
Thu Jul 12 00:04:51 2018 - [info] GTID ON
Thu Jul 12 00:04:51 2018 - [info] Replicating from 172.25.254.1(172.25.254.1:3306)
Thu Jul 12 00:04:51 2018 - [info] Primary candidate for the new Master (candidate_master is set)
Thu Jul 12 00:04:51 2018 - [info] 172.25.254.3(172.25.254.3:3306o_master=1) Version=5.7.17-log (oldest major version between slaves) log-bin:enabled
Thu Jul 12 00:04:51 2018 - [info] GTID ON
Thu Jul 12 00:04:51 2018 - [info] Replicating from 172.25.254.1(172.25.254.1:3306)
Thu Jul 12 00:04:51 2018 - [info] Current Alive Master: 172.25.254.1(172.25.254.1:3306)
Thu Jul 12 00:04:51 2018 - [info] Checking slave configurations..
Thu Jul 12 00:04:51 2018 - [info] Checking replication filtering settings..
Thu Jul 12 00:04:51 2018 - [info] binlog_do_db= , binlog_ignore_db=
Thu Jul 12 00:04:51 2018 - [info] Replication filtering check ok.
Thu Jul 12 00:04:51 2018 - [info] GTID (with auto-pos) is supported. Skipping all SSH and Node package checking.
Thu Jul 12 00:04:51 2018 - [info] Checking SSH publickey authentication settings on the current master..
Thu Jul 12 00:04:51 2018 - [info] HealthCheck: SSH to 172.25.254.1 is reachable.
Thu Jul 12 00:04:51 2018 - [info]
172.25.254.1(172.25.254.1:3306) (current master)
+--172.25.254.2(172.25.254.2:3306)
+--172.25.254.3(172.25.254.3:3306o_master=1)
Thu Jul 12 00:04:51 2018 - [info] Checking replication health on 172.25.254.2..
Thu Jul 12 00:04:51 2018 - [info] ok.
Thu Jul 12 00:04:51 2018 - [info] Checking replication health on 172.25.254.3..
Thu Jul 12 00:04:51 2018 - [info] ok.
Thu Jul 12 00:04:51 2018 - [warning] master_ip_failover_script is not defined.
Thu Jul 12 00:04:51 2018 - [warning] shutdown_script is not defined.
Thu Jul 12 00:04:51 2018 - [info] Got exit code 0 (Not master dead).
MySQL Replication Health is OK.
四、测试
1、manager机开启监控
[root@server4 ~]# nohup masterha_manager --conf=/etc/masterha/app.cnf &
[1] 1201
[root@server4 ~]# nohup: ignoring input and appending output to `nohup.out'
[root@server4 ~]#
2、测试
将master机的mysql down掉后
1527 pts/0 S 0:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysq
1772 pts/0 Sl 0:02 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/m
1969 pts/0 R+ 0:00 ps ax
[root@server1 ~]# kill -9 1527
[root@server1 ~]# kill -9 1772
manager机会自动生成日志等文件
[root@server4 masterha]# ls
app.cnf app.failover.complete mha.log
[root@server4 masterha]# cat mha.log
----- Failover Report -----
app: MySQL Master failover 172.25.254.1(172.25.254.1:3306) to 172.25.254.2(172.25.254.2:3306) succeeded
Master 172.25.254.1(172.25.254.1:3306) is down!
Check MHA Manager logs at server4:/etc/masterha/mha.log for details.
Started automated(non-interactive) failover.
Selected 172.25.254.2(172.25.254.2:3306) as a new master.
172.25.254.2(172.25.254.2:3306): OK: Applying all logs succeeded.
172.25.254.3(172.25.254.3:3306o_master=1): OK: Slave started, replicating from 172.25.254.2(172.25.254.2:3306)
172.25.254.2(172.25.254.2:3306): Resetting slave info succeeded.
Master failover to 172.25.254.2(172.25.254.2:3306) completed successfully.
日志文件中提示master已经由2接管
此时我们在server2和server3分别查看
server2
mysql> show master status;
+------------------+----------+--------------+------------------+------------------------------------------------------------------------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+------------------------------------------------------------------------------------+
| mysql-bin.000002 | 710 | | | 00a648ff-851a-11e8-9159-525400d98192:1-3,
f41fd867-8519-11e8-a35f-52540099c29d:1-5 |
+------------------+----------+--------------+------------------+------------------------------------------------------------------------------------+
1 row in set (0.00 sec)
server3
mysql> show slave status\G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 172.25.254.2 ##master指向已经从原来的1指向了3
Master_User: wuyanzu
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000002
Read_Master_Log_Pos: 710
Relay_Log_File: server3-relay-bin.000002
Relay_Log_Pos: 923
Relay_Master_Log_File: mysql-bin.000002
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
将server的mysql开启,并将他手动设置为slave,指向新的master
Starting mysqld: [ OK ]
[root@server1 ~]# mysql -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.17-log MySQL Community Server (GPL)
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show slave status;
Empty set (0.00 sec)
mysql> change master to master_host='172.25.254.2',master_user='wuyanzu',master_password='westos',master_auto_position=1;
Query OK, 0 rows affected, 2 warnings (0.34 sec)
mysql> start slave;
Query OK, 0 rows affected (0.03 sec)
mysql> show slave status\G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 172.25.254.2
Master_User: wuyanzu
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000002
Read_Master_Log_Pos: 710
Relay_Log_File: server1-relay-bin.000002
Relay_Log_Pos: 923
Relay_Master_Log_File: mysql-bin.000002
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
五、master的在线切换
1、将manager机上配置文件中的备用master指向注释掉
[server default]
manager_log=/etc/masterha/mha.log
manager_workdir=/etc/masterha/
master_binlog_dir=/var/lib/mysql
#master_ip_online_change_script=/etc/masterha/master_ip_online_change
password=westos
ping_interval=1
remote_workdir=/tmp
repl_password=westos
repl_user=wuyanzu
ssh_user=root
user=root
[server1]
hostname=172.25.254.1
port=3306
[server2]
#candidate_master=1
#check_repl_delay=0
hostname=172.25.254.2
port=3306
[server3]
hostname=172.25.254.3
port=3306
2、手动将master从server2切换到server1
[root@server4 masterha]# masterha_master_switch --conf=/etc/masterha/app.cnf --master_state=alive --new_master_host=172.25.254.1 --new_master_port=3306 --orig_master_is_new_slave --running_updates_limit=10000
Thu Jul 12 00:31:38 2018 - [info] MHA::MasterRotate version 0.56.
Thu Jul 12 00:31:38 2018 - [info] Starting online master switch..
Thu Jul 12 00:31:38 2018 - [info]
Thu Jul 12 00:31:38 2018 - [info] * Phase 1: Configuration Check Phase..
Thu Jul 12 00:31:38 2018 - [info]
Thu Jul 12 00:31:38 2018 - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Thu Jul 12 00:31:38 2018 - [info] Reading application default configuration from /etc/masterha/app.cnf..
Thu Jul 12 00:31:38 2018 - [info] Reading server configuration from /etc/masterha/app.cnf..
Thu Jul 12 00:31:38 2018 - [info] GTID failover mode = 1
Thu Jul 12 00:31:38 2018 - [info] Current Alive Master: 172.25.254.2(172.25.254.2:3306)
Thu Jul 12 00:31:38 2018 - [info] Alive Slaves:
Thu Jul 12 00:31:38 2018 - [info] 172.25.254.1(172.25.254.1:3306) Version=5.7.17-log (oldest major version between slaves) log-bin:enabled
Thu Jul 12 00:31:38 2018 - [info] GTID ON
Thu Jul 12 00:31:38 2018 - [info] Replicating from 172.25.254.2(172.25.254.2:3306)
Thu Jul 12 00:31:38 2018 - [info] 172.25.254.3(172.25.254.3:3306) Version=5.7.17-log (oldest major version between slaves) log-bin:enabled
Thu Jul 12 00:31:38 2018 - [info] GTID ON
Thu Jul 12 00:31:38 2018 - [info] Replicating from 172.25.254.2(172.25.254.2:3306)
It is better to execute FLUSH NO_WRITE_TO_BINLOG TABLES on the master before switching. Is it ok to execute on 172.25.254.2(172.25.254.2:3306)? (YES/no): yes
Thu Jul 12 00:31:40 2018 - [info] Executing FLUSH NO_WRITE_TO_BINLOG TABLES. This may take long time..
Thu Jul 12 00:31:40 2018 - [info] ok.
Thu Jul 12 00:31:40 2018 - [info] Checking MHA is not monitoring or doing failover..
Thu Jul 12 00:31:40 2018 - [info] Checking replication health on 172.25.254.1..
Thu Jul 12 00:31:40 2018 - [info] ok.
Thu Jul 12 00:31:40 2018 - [info] Checking replication health on 172.25.254.3..
Thu Jul 12 00:31:40 2018 - [info] ok.
Thu Jul 12 00:31:40 2018 - [info] 172.25.254.1 can be new master.
Thu Jul 12 00:31:40 2018 - [info]
From:
172.25.254.2(172.25.254.2:3306) (current master)
+--172.25.254.1(172.25.254.1:3306)
+--172.25.254.3(172.25.254.3:3306)
To:
172.25.254.1(172.25.254.1:3306) (new master)
+--172.25.254.3(172.25.254.3:3306)
+--172.25.254.2(172.25.254.2:3306)
Starting master switch from 172.25.254.2(172.25.254.2:3306) to 172.25.254.1(172.25.254.1:3306)? (yes/NO): yes
Thu Jul 12 00:31:48 2018 - [info] Checking whether 172.25.254.1(172.25.254.1:3306) is ok for the new master..
Thu Jul 12 00:31:48 2018 - [info] ok.
Thu Jul 12 00:31:48 2018 - [info] 172.25.254.2(172.25.254.2:3306): SHOW SLAVE STATUS returned empty result. To check replication filtering rules, temporarily executing CHANGE MASTER to a dummy host.
Thu Jul 12 00:31:49 2018 - [info] 172.25.254.2(172.25.254.2:3306): Resetting slave pointing to the dummy host.
Thu Jul 12 00:31:49 2018 - [info] ** Phase 1: Configuration Check Phase completed.
Thu Jul 12 00:31:49 2018 - [info]
Thu Jul 12 00:31:49 2018 - [info] * Phase 2: Rejecting updates Phase..
Thu Jul 12 00:31:49 2018 - [info]
master_ip_online_change_script is not defined. If you do not disable writes on the current master manually, applications keep writing on the current master. Is it ok to proceed? (yes/NO): yes
Thu Jul 12 00:31:53 2018 - [info] Locking all tables on the orig master to reject updates from everybody (including root):
Thu Jul 12 00:31:53 2018 - [info] Executing FLUSH TABLES WITH READ LOCK..
Thu Jul 12 00:31:53 2018 - [info] ok.
Thu Jul 12 00:31:53 2018 - [info] Orig master binlog:pos is mysql-bin.000002:710.
Thu Jul 12 00:31:53 2018 - [info] Waiting to execute all relay logs on 172.25.254.1(172.25.254.1:3306)..
Thu Jul 12 00:31:53 2018 - [info] master_pos_wait(mysql-bin.000002:710) completed on 172.25.254.1(172.25.254.1:3306). Executed 0 events.
Thu Jul 12 00:31:53 2018 - [info] done.
Thu Jul 12 00:31:53 2018 - [info] Getting new master's binlog name and position..
Thu Jul 12 00:31:53 2018 - [info] mysql-bin.000003:194
Thu Jul 12 00:31:53 2018 - [info] All other slaves should start replication from here. Statement should be: CHANGE MASTER TO MASTER_HOST='172.25.254.1', MASTER_PORT=3306, MASTER_AUTO_POSITION=1, MASTER_USER='wuyanzu', MASTER_PASSWORD='xxx';
Thu Jul 12 00:31:53 2018 - [info]
Thu Jul 12 00:31:53 2018 - [info] * Switching slaves in parallel..
Thu Jul 12 00:31:53 2018 - [info]
Thu Jul 12 00:31:53 2018 - [info] -- Slave switch on host 172.25.254.3(172.25.254.3:3306) started, pid: 1380
Thu Jul 12 00:31:53 2018 - [info]
Thu Jul 12 00:31:53 2018 - [info] Log messages from 172.25.254.3 ...
Thu Jul 12 00:31:53 2018 - [info]
Thu Jul 12 00:31:53 2018 - [info] Waiting to execute all relay logs on 172.25.254.3(172.25.254.3:3306)..
Thu Jul 12 00:31:53 2018 - [info] master_pos_wait(mysql-bin.000002:710) completed on 172.25.254.3(172.25.254.3:3306). Executed 0 events.
Thu Jul 12 00:31:53 2018 - [info] done.
Thu Jul 12 00:31:53 2018 - [info] Resetting slave 172.25.254.3(172.25.254.3:3306) and starting replication from the new master 172.25.254.1(172.25.254.1:3306)..
Thu Jul 12 00:31:53 2018 - [info] Executed CHANGE MASTER.
Thu Jul 12 00:31:53 2018 - [info] Slave started.
Thu Jul 12 00:31:53 2018 - [info] End of log messages from 172.25.254.3 ...
Thu Jul 12 00:31:53 2018 - [info]
Thu Jul 12 00:31:53 2018 - [info] -- Slave switch on host 172.25.254.3(172.25.254.3:3306) succeeded.
Thu Jul 12 00:31:53 2018 - [info] Unlocking all tables on the orig master:
Thu Jul 12 00:31:53 2018 - [info] Executing UNLOCK TABLES..
Thu Jul 12 00:31:53 2018 - [info] ok.
Thu Jul 12 00:31:53 2018 - [info] Starting orig master as a new slave..
Thu Jul 12 00:31:53 2018 - [info] Resetting slave 172.25.254.2(172.25.254.2:3306) and starting replication from the new master 172.25.254.1(172.25.254.1:3306)..
Thu Jul 12 00:31:54 2018 - [info] Executed CHANGE MASTER.
Thu Jul 12 00:31:54 2018 - [info] Slave started.
Thu Jul 12 00:31:54 2018 - [info] All new slave servers switched successfully.
Thu Jul 12 00:31:54 2018 - [info]
Thu Jul 12 00:31:54 2018 - [info] * Phase 5: New master cleanup phase..
Thu Jul 12 00:31:54 2018 - [info]
Thu Jul 12 00:31:54 2018 - [info] 172.25.254.1: Resetting slave info succeeded.
Thu Jul 12 00:31:54 2018 - [info] Switching master to 172.25.254.1(172.25.254.1:3306) completed successfully.
分别的server1,server2和server3查看
server1
mysql> show master status;
+------------------+----------+--------------+------------------+------------------------------------------------------------------------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+------------------------------------------------------------------------------------+
| mysql-bin.000003 | 194 | | | 00a648ff-851a-11e8-9159-525400d98192:1-3,
f41fd867-8519-11e8-a35f-52540099c29d:1-5 |
+------------------+----------+--------------+------------------+------------------------------------------------------------------------------------+
1 row in set (0.00 sec)
server2
mysql> show slave status\G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 172.25.254.1
Master_User: wuyanzu
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000003
Read_Master_Log_Pos: 194
Relay_Log_File: server2-relay-bin.000002
Relay_Log_Pos: 367
Relay_Master_Log_File: mysql-bin.000003
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
server3
mysql> show slave status\G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 172.25.254.1
Master_User: wuyanzu
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000003
Read_Master_Log_Pos: 194
Relay_Log_File: server2-relay-bin.000002
Relay_Log_Pos: 367
Relay_Master_Log_File: mysql-bin.000003
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
注意:手动切换操作并不会被记录在mha的日志文件中
[root@server4 masterha]# cat mha.log ##查看日志并没有手动切换操作记录
----- Failover Report -----
app: MySQL Master failover 172.25.254.1(172.25.254.1:3306) to 172.25.254.2(172.25.254.2:3306) succeeded
Master 172.25.254.1(172.25.254.1:3306) is down!
Check MHA Manager logs at server4:/etc/masterha/mha.log for details.
Started automated(non-interactive) failover.
Selected 172.25.254.2(172.25.254.2:3306) as a new master.
172.25.254.2(172.25.254.2:3306): OK: Applying all logs succeeded.
172.25.254.3(172.25.254.3:3306o_master=1): OK: Slave started, replicating from 172.25.254.2(172.25.254.2:3306)
172.25.254.2(172.25.254.2:3306): Resetting slave info succeeded.
Master failover to 172.25.254.2(172.25.254.2:3306) completed successfully.
六、master手动切换
配置文件同在线切换
若master down,没有 nohup masterha_manager,则需手动切换
2004 pts/0 S 0:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysq
2253 pts/0 Sl 0:00 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/m
2300 pts/0 R+ 0:00 ps ax
[root@server1 ~]# kill -9 2004
[root@server1 ~]# kill -9 2253
manger节点管理:
masterha_master_switch --conf=/etc/masterha/app.cnf --master_state=dead --dead_master_host=172.25.254.1 -dead_master_port=3306 --new_master_host=172.25.254.2 --new_master_port=3306 --ignore_last_failover
[root@server4 masterha]# masterha_master_switch --conf=/etc/masterha/app.cnf --master_state=dead --dead_master_host=172.25.254.1 -dead_master_port=3306 --new_master_host=172.25.254.2 --new_master_port=3306 --ignore_last_failover
--dead_master_ip=<dead_master_ip> is not set. Using 172.25.254.1.
Thu Jul 12 00:43:33 2018 - [warning] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Thu Jul 12 00:43:33 2018 - [info] Reading application default configuration from /etc/masterha/app.cnf..
Thu Jul 12 00:43:33 2018 - [info] Reading server configuration from /etc/masterha/app.cnf..
Thu Jul 12 00:43:33 2018 - [info] MHA::MasterFailover version 0.56.
Thu Jul 12 00:43:33 2018 - [info] Starting master failover.
Thu Jul 12 00:43:33 2018 - [info]
Thu Jul 12 00:43:33 2018 - [info] * Phase 1: Configuration Check Phase..
Thu Jul 12 00:43:33 2018 - [info]
Thu Jul 12 00:43:33 2018 - [info] GTID failover mode = 1
Thu Jul 12 00:43:33 2018 - [info] Dead Servers:
Thu Jul 12 00:43:33 2018 - [info] 172.25.254.1(172.25.254.1:3306)
Thu Jul 12 00:43:33 2018 - [info] Checking master reachability via MySQL(double check)...
Thu Jul 12 00:43:33 2018 - [info] ok.
Thu Jul 12 00:43:33 2018 - [info] Alive Servers:
Thu Jul 12 00:43:33 2018 - [info] 172.25.254.2(172.25.254.2:3306)
Thu Jul 12 00:43:33 2018 - [info] 172.25.254.3(172.25.254.3:3306)
Thu Jul 12 00:43:33 2018 - [info] Alive Slaves:
Thu Jul 12 00:43:33 2018 - [info] 172.25.254.2(172.25.254.2:3306) Version=5.7.17-log (oldest major version between slaves) log-bin:enabled
Thu Jul 12 00:43:33 2018 - [info] GTID ON
Thu Jul 12 00:43:33 2018 - [info] Replicating from 172.25.254.1(172.25.254.1:3306)
Thu Jul 12 00:43:33 2018 - [info] 172.25.254.3(172.25.254.3:3306) Version=5.7.17-log (oldest major version between slaves) log-bin:enabled
Thu Jul 12 00:43:33 2018 - [info] GTID ON
Thu Jul 12 00:43:33 2018 - [info] Replicating from 172.25.254.1(172.25.254.1:3306)
Master 172.25.254.1(172.25.254.1:3306) is dead. Proceed? (yes/NO): yes
Thu Jul 12 00:43:39 2018 - [info] Starting GTID based failover.
Thu Jul 12 00:43:39 2018 - [info]
Thu Jul 12 00:43:39 2018 - [info] ** Phase 1: Configuration Check Phase completed.
Thu Jul 12 00:43:39 2018 - [info]
Thu Jul 12 00:43:39 2018 - [info] * Phase 2: Dead Master Shutdown Phase..
Thu Jul 12 00:43:39 2018 - [info]
Thu Jul 12 00:43:39 2018 - [info] HealthCheck: SSH to 172.25.254.1 is reachable.
Thu Jul 12 00:43:39 2018 - [info] Forcing shutdown so that applications never connect to the current master..
Thu Jul 12 00:43:39 2018 - [warning] master_ip_failover_script is not set. Skipping invalidating dead master IP address.
Thu Jul 12 00:43:39 2018 - [warning] shutdown_script is not set. Skipping explicit shutting down of the dead master.
Thu Jul 12 00:43:39 2018 - [info] * Phase 2: Dead Master Shutdown Phase completed.
Thu Jul 12 00:43:39 2018 - [info]
Thu Jul 12 00:43:39 2018 - [info] * Phase 3: Master Recovery Phase..
Thu Jul 12 00:43:39 2018 - [info]
Thu Jul 12 00:43:39 2018 - [info] * Phase 3.1: Getting Latest Slaves Phase..
Thu Jul 12 00:43:39 2018 - [info]
Thu Jul 12 00:43:39 2018 - [info] The latest binary log file/position on all slaves is mysql-bin.000003:194
Thu Jul 12 00:43:39 2018 - [info] Latest slaves (Slaves that received relay log files to the latest):
Thu Jul 12 00:43:39 2018 - [info] 172.25.254.2(172.25.254.2:3306) Version=5.7.17-log (oldest major version between slaves) log-bin:enabled
Thu Jul 12 00:43:39 2018 - [info] GTID ON
Thu Jul 12 00:43:39 2018 - [info] Replicating from 172.25.254.1(172.25.254.1:3306)
Thu Jul 12 00:43:39 2018 - [info] 172.25.254.3(172.25.254.3:3306) Version=5.7.17-log (oldest major version between slaves) log-bin:enabled
Thu Jul 12 00:43:39 2018 - [info] GTID ON
Thu Jul 12 00:43:39 2018 - [info] Replicating from 172.25.254.1(172.25.254.1:3306)
Thu Jul 12 00:43:39 2018 - [info] The oldest binary log file/position on all slaves is mysql-bin.000003:194
Thu Jul 12 00:43:39 2018 - [info] Oldest slaves:
Thu Jul 12 00:43:39 2018 - [info] 172.25.254.2(172.25.254.2:3306) Version=5.7.17-log (oldest major version between slaves) log-bin:enabled
Thu Jul 12 00:43:39 2018 - [info] GTID ON
Thu Jul 12 00:43:39 2018 - [info] Replicating from 172.25.254.1(172.25.254.1:3306)
Thu Jul 12 00:43:39 2018 - [info] 172.25.254.3(172.25.254.3:3306) Version=5.7.17-log (oldest major version between slaves) log-bin:enabled
Thu Jul 12 00:43:39 2018 - [info] GTID ON
Thu Jul 12 00:43:39 2018 - [info] Replicating from 172.25.254.1(172.25.254.1:3306)
Thu Jul 12 00:43:39 2018 - [info]
Thu Jul 12 00:43:39 2018 - [info] * Phase 3.3: Determining New Master Phase..
Thu Jul 12 00:43:39 2018 - [info]
Thu Jul 12 00:43:39 2018 - [info] 172.25.254.2 can be new master.
Thu Jul 12 00:43:39 2018 - [info] New master is 172.25.254.2(172.25.254.2:3306)
Thu Jul 12 00:43:39 2018 - [info] Starting master failover..
Thu Jul 12 00:43:39 2018 - [info]
From:
172.25.254.1(172.25.254.1:3306) (current master)
+--172.25.254.2(172.25.254.2:3306)
+--172.25.254.3(172.25.254.3:3306)
To:
172.25.254.2(172.25.254.2:3306) (new master)
+--172.25.254.3(172.25.254.3:3306)
Starting master switch from 172.25.254.1(172.25.254.1:3306) to 172.25.254.2(172.25.254.2:3306)? (yes/NO): yes
Thu Jul 12 00:43:43 2018 - [info] New master decided manually is 172.25.254.2(172.25.254.2:3306)
Thu Jul 12 00:43:43 2018 - [info]
Thu Jul 12 00:43:43 2018 - [info] * Phase 3.3: New Master Recovery Phase..
Thu Jul 12 00:43:43 2018 - [info]
Thu Jul 12 00:43:43 2018 - [info] Waiting all logs to be applied..
Thu Jul 12 00:43:43 2018 - [info] done.
Thu Jul 12 00:43:43 2018 - [info] Getting new master's binlog name and position..
Thu Jul 12 00:43:43 2018 - [info] mysql-bin.000002:710
Thu Jul 12 00:43:43 2018 - [info] All other slaves should start replication from here. Statement should be: CHANGE MASTER TO MASTER_HOST='172.25.254.2', MASTER_PORT=3306, MASTER_AUTO_POSITION=1, MASTER_USER='wuyanzu', MASTER_PASSWORD='xxx';
Thu Jul 12 00:43:43 2018 - [info] Master Recovery succeeded. File:Pos:Exec_Gtid_Set: mysql-bin.000002, 710, 00a648ff-851a-11e8-9159-525400d98192:1-3,
f41fd867-8519-11e8-a35f-52540099c29d:1-5
Thu Jul 12 00:43:43 2018 - [warning] master_ip_failover_script is not set. Skipping taking over new master IP address.
Thu Jul 12 00:43:43 2018 - [info] ** Finished master recovery successfully.
Thu Jul 12 00:43:43 2018 - [info] * Phase 3: Master Recovery Phase completed.
Thu Jul 12 00:43:43 2018 - [info]
Thu Jul 12 00:43:43 2018 - [info] * Phase 4: Slaves Recovery Phase..
Thu Jul 12 00:43:43 2018 - [info]
Thu Jul 12 00:43:43 2018 - [info]
Thu Jul 12 00:43:43 2018 - [info] * Phase 4.1: Starting Slaves in parallel..
Thu Jul 12 00:43:43 2018 - [info]
Thu Jul 12 00:43:43 2018 - [info] -- Slave recovery on host 172.25.254.3(172.25.254.3:3306) started, pid: 1394. Check tmp log /etc/masterha//172.25.254.3_3306_20180712004333.log if it takes time..
Thu Jul 12 00:43:43 2018 - [info]
Thu Jul 12 00:43:43 2018 - [info] Log messages from 172.25.254.3 ...
Thu Jul 12 00:43:43 2018 - [info]
Thu Jul 12 00:43:43 2018 - [info] Resetting slave 172.25.254.3(172.25.254.3:3306) and starting replication from the new master 172.25.254.2(172.25.254.2:3306)..
Thu Jul 12 00:43:43 2018 - [info] Executed CHANGE MASTER.
Thu Jul 12 00:43:43 2018 - [info] Slave started.
Thu Jul 12 00:43:43 2018 - [info] gtid_wait(00a648ff-851a-11e8-9159-525400d98192:1-3,
f41fd867-8519-11e8-a35f-52540099c29d:1-5) completed on 172.25.254.3(172.25.254.3:3306). Executed 0 events.
Thu Jul 12 00:43:43 2018 - [info] End of log messages from 172.25.254.3.
Thu Jul 12 00:43:43 2018 - [info] -- Slave on host 172.25.254.3(172.25.254.3:3306) started.
Thu Jul 12 00:43:43 2018 - [info] All new slave servers recovered successfully.
Thu Jul 12 00:43:43 2018 - [info]
Thu Jul 12 00:43:43 2018 - [info] * Phase 5: New master cleanup phase..
Thu Jul 12 00:43:43 2018 - [info]
Thu Jul 12 00:43:43 2018 - [info] Resetting slave info on the new master..
Thu Jul 12 00:43:44 2018 - [info] 172.25.254.2: Resetting slave info succeeded.
Thu Jul 12 00:43:44 2018 - [info] Master failover to 172.25.254.2(172.25.254.2:3306) completed successfully.
Thu Jul 12 00:43:44 2018 - [info]
----- Failover Report -----
app: MySQL Master failover 172.25.254.1(172.25.254.1:3306) to 172.25.254.2(172.25.254.2:3306) succeeded
Master 172.25.254.1(172.25.254.1:3306) is down!
Check MHA Manager logs at server4 for details.
Started manual(interactive) failover.
Selected 172.25.254.2(172.25.254.2:3306) as a new master.
172.25.254.2(172.25.254.2:3306): OK: Applying all logs succeeded.
172.25.254.3(172.25.254.3:3306): OK: Slave started, replicating from 172.25.254.2(172.25.254.2:3306)
172.25.254.2(172.25.254.2:3306): Resetting slave info succeeded.
Master failover to 172.25.254.2(172.25.254.2:3306) completed successfully.
server3查看:
mysql> show slave status\G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 172.25.254.2
Master_User: wuyanzu
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000002
Read_Master_Log_Pos: 710
Relay_Log_File: server3-relay-bin.000002
Relay_Log_Pos: 414
Relay_Master_Log_File: mysql-bin.000002
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
七、vip配置
重新将server1的mysql打开,且设置为slave,此时server2为master,server1和server3为slave
1、在server2添加一个虚拟ip
[root@server2 mysql]# ip addr add 172.25.254.100/24 dev eth0
[root@server2 mysql]# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 52:54:00:d9:81:92 brd ff:ff:ff:ff:ff:ff
inet 172.25.254.2/24 brd 172.25.254.255 scope global eth0
inet 172.25.254.100/24 scope global secondary eth0
inet6 fe80::5054:ff:fed9:8192/64 scope link
valid_lft forever preferred_lft forever
2、manager节点配置
1、修改app.cnf文件
[server default]
manager_log=/etc/masterha/mha.log
manager_workdir=/etc/masterha/
master_binlog_dir=/var/lib/mysql
master_ip_failover_script=/usr/local/bin/master_ip_failover
master_ip_online_change_script=/usr/local/bin/master_ip_online_change
password=westos
ping_interval=1
remote_workdir=/tmp
repl_password=westos
repl_user=wuyanzu
ssh_user=root
user=root
[server1]
hostname=172.25.254.1
port=3306
[server2]
#candidate_master=1
#check_repl_delay=0
hostname=172.25.254.2
port=3306
[server3]
hostname=172.25.254.3
port=3306
2、在/usr/local/bin/编辑两个脚本文件
[root@server4 bin]# cd /usr/local/bin/
[root@server4 bin]# cat vim master_ip_failover
cat: vim: No such file or directory
#!/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 = '172.25.254.100/24';
my $key = '1';
my $ssh_start_vip = "/sbin/ip addr add $vip dev eth0";
my $ssh_stop_vip = "/sbin/ip addr del $vip dev eth0";
GetOptions(
'command=s' => \$command,
'ssh_user=s' => \$ssh_user,
'orig_master_host=s' => \$orig_master_host,
'orig_master_ip=s' => \$orig_master_ip,
'orig_master_port=i' => \$orig_master_port,
'new_master_host=s' => \$new_master_host,
'new_master_ip=s' => \$new_master_ip,
'new_master_port=i' => \$new_master_port,
);
exit &main();
sub main {
print "\n\nIN SCRIPT TEST====$ssh_stop_vip==$ssh_start_vip===\n\n";
if ( $command eq "stop" || $command eq "stopssh" ) {
my $exit_code = 1;
eval {
print "Disabling the VIP on old master: $orig_master_host \n";
&stop_vip();
$exit_code = 0;
};
if ($@) {
warn "Got Error: $@\n";
exit $exit_code;
}
exit $exit_code;
}
elsif ( $command eq "start" ) {
my $exit_code = 10;
eval {
print "Enabling the VIP - $vip on the new master - $new_master_host \n";
&start_vip();
$exit_code = 0;
};
if ($@) {
warn $@;
exit $exit_code;
}
exit $exit_code;
}
elsif ( $command eq "status" ) {
print "Checking the Status of the script.. OK \n";
exit 0;
}
else {
&usage();
exit 1;
}
}
sub start_vip() {
`ssh $ssh_user\@$new_master_host \" $ssh_start_vip \"`;
}
sub stop_vip() {
return 0 unless ($ssh_user);
`ssh $ssh_user\@$orig_master_host \" $ssh_stop_vip \"`;
}
sub usage {
print
"Usage: master_ip_failover --command=start|stop|stopssh|status --orig_master_host=host --orig_master_ip=ip --orig_master_port=port --new_master_host=host --new_master_ip=ip --new_master_port=port\n";
}
[root@server4 bin]# cat master_ip_online_change
#!/usr/bin/env perl
use strict;
use warnings FATAL =>'all';
use Getopt::Long;
my $vip = '172.25.254.100/24'; # Virtual IP
my $key = "1";
my $ssh_start_vip = "/sbin/ip addr add $vip dev eth0";
my $ssh_stop_vip = "/sbin/ip addr del $vip dev eth0";
my $exit_code = 0;
my (
$command, $orig_master_is_new_slave, $orig_master_host,
$orig_master_ip, $orig_master_port, $orig_master_user,
$orig_master_password, $orig_master_ssh_user, $new_master_host,
$new_master_ip, $new_master_port, $new_master_user,
$new_master_password, $new_master_ssh_user,
);
GetOptions(
'command=s' => \$command,
'orig_master_is_new_slave' => \$orig_master_is_new_slave,
'orig_master_host=s' => \$orig_master_host,
'orig_master_ip=s' => \$orig_master_ip,
'orig_master_port=i' => \$orig_master_port,
'orig_master_user=s' => \$orig_master_user,
'orig_master_password=s' => \$orig_master_password,
'orig_master_ssh_user=s' => \$orig_master_ssh_user,
'new_master_host=s' => \$new_master_host,
'new_master_ip=s' => \$new_master_ip,
'new_master_port=i' => \$new_master_port,
'new_master_user=s' => \$new_master_user,
'new_master_password=s' => \$new_master_password,
'new_master_ssh_user=s' => \$new_master_ssh_user,
);
exit &main();
sub main {
#print "\n\nIN SCRIPT TEST====$ssh_stop_vip==$ssh_start_vip===\n\n";
if ( $command eq "stop" || $command eq "stopssh" ) {
# $orig_master_host, $orig_master_ip, $orig_master_port are passed.
# If you manage master ip address at global catalog database,
# invalidate orig_master_ip here.
my $exit_code = 1;
eval {
print "\n\n\n***************************************************************\n";
print "Disabling the VIP - $vip on old master: $orig_master_host\n";
print "***************************************************************\n\n\n\n";
&stop_vip();
$exit_code = 0;
};
if ($@) {
warn "Got Error: $@\n";
exit $exit_code;
}
exit $exit_code;
}
elsif ( $command eq "start" ) {
# all arguments are passed.
# If you manage master ip address at global catalog database,
# activate new_master_ip here.
# You can also grant write access (create user, set read_only=0, etc) here.
my $exit_code = 10;
eval {
print "\n\n\n***************************************************************\n";
print "Enabling the VIP - $vip on new master: $new_master_host \n";
print "***************************************************************\n\n\n\n";
&start_vip();
$exit_code = 0;
};
if ($@) {
warn $@;
exit $exit_code;
}
exit $exit_code;
}
elsif ( $command eq "status" ) {
print "Checking the Status of the script.. OK \n";
`ssh $orig_master_ssh_user\@$orig_master_host \" $ssh_start_vip \"`;
exit 0;
}
else {
&usage();
exit 1;
}
}
# A simple system call that enable the VIP on the new master
sub start_vip() {
`ssh $new_master_ssh_user\@$new_master_host \" $ssh_start_vip \"`;
}
# A simple system call that disable the VIP on the old_master
sub stop_vip() {
`ssh $orig_master_ssh_user\@$orig_master_host \" $ssh_stop_vip \"`;
}
sub usage {
print
"Usage: master_ip_failover --command=start|stop|stopssh|status --orig_master_host=host --orig_master_ip=ip --orig_master_port=port --new_master_host=host --new_master_ip=ip --new_master_port=port\n";
}
给这两个脚本文件给到执行权限
[root@server4 bin]# ll master_ip_*
-rwxrwxrwx 1 root root 2173 Jul 12 01:00 master_ip_failover
-rwxrwxrwx 1 root root 3848 Jul 12 01:13 master_ip_online_change
测试:
在线将master切换到server1上,查看server1和server2的ip
[root@server5 bin]# masterha_master_switch --conf=/etc/masterha/app1.cnf --master_state=alive --new_master_host=172.25.51.5 --new_master_port=3306 --orig_master_is_new_slave --running_updates_limit=10000
172.25.254.2(172.25.254.2:3306) (current master)
+--172.25.254.1(172.25.254.1:3306)
+--172.25.254.3(172.25.254.3:3306)
To:
172.25.254.1(172.25.254.1:3306) (new master)
+--172.25.254.3(172.25.254.3:3306)
+--172.25.254.2(172.25.254.2:3306)
***************************************************************
Disabling the VIP - 172.25.254.100/24 on old master: 172.25.254.2
***************************************************************
***************************************************************
Enabling the VIP - 172.25.254.100/24 on new master: 172.25.254.1
***************************************************************
server2查看ip
vip已经没有了且server2变成了slave
[root@server2 mysql]# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 52:54:00:d9:81:92 brd ff:ff:ff:ff:ff:ff
inet 172.25.254.2/24 brd 172.25.254.255 scope global eth0
inet6 fe80::5054:ff:fed9:8192/64 scope link
valid_lft forever preferred_lft forever
mysql> show slave status\G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 172.25.254.1
Master_User: wuyanzu
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000004
Read_Master_Log_Pos: 194
Relay_Log_File: server2-relay-bin.000002
Relay_Log_Pos: 367
Relay_Master_Log_File: mysql-bin.000004
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
server1
[root@server1 ~]# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 52:54:00:99:c2:9d brd ff:ff:ff:ff:ff:ff
inet 172.25.254.1/24 brd 172.25.254.255 scope global eth0
inet 172.25.254.100/24 scope global secondary eth0
inet6 fe80::5054:ff:fe99:c29d/64 scope link
valid_lft forever preferred_lft forever
[root@server1 ~]# mysql -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 19
Server version: 5.7.17-log MySQL Community Server (GPL)
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show slave status\G;
Empty set (0.00 sec)
ERROR:
No query specified