root@pxe support-files\]# vim \~/.bash_profile
# .bash_profile
# Get the aliases and functions
if \[ -f \~/.bashrc \]; then
. \~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin:/usr/local/mysql/bin
export PATH
执行脚本
\[root@pxe support-files\]# source \~/.bash_profile
数据库初始化建立基本数据
\[root@pxe support-files\]# mysqld --user mysql --initialize
localhost: 10:WPQGxQHTh6(D 20:7fL4w3Czsp(T
\[root@pxe support-files\]# cd
将初始密码保存
\[root@pxe \~\]# vim passwd
启动mysql
\[root@pxe \~\]# /etc/init.d/mysqld start
Starting MySQL.Logging to '/data/mysql/pxe.err'.
SUCCESS!
通过命令启动数据库指定级别,这里默认启动2345
\[root@pxe \~\]# chkconfig mysqld on
\[root@pxe \~\]# chkconfig --list
mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off
安全初始化
\[root@pxe \~\]# mysql_secure_installation
Enter password for user root: 输入初始密码passwd里面保存的
New password:设置新密码
Re-enter new password:再输入一遍新密码
Press y\|Y for Yes, any other key for No: no
Change the password for root ? ((Press y\|Y for Yes, any other key for No) : no
Remove anonymous users? (Press y\|Y for Yes, any other key for No) : y
Success.
Disallow root login remotely? (Press y\|Y for Yes, any other key for No) : y
Success.
Remove test database and access to it? (Press y\|Y for Yes, any other key for No) : y
Reload privilege tables now? (Press y\|Y for Yes, any other key for No) : y
登录测试
\[root@pxe \~\]# mysql -uroot -p
Enter password:123
mysql\> show databases
-\> ;
+--------------------+
\| Database \|
+--------------------+
\| information_schema \|
\| mysql \|
\| performance_schema \|
\| sys \|
+--------------------+
4 rows in set (0.00 sec)
三、mysql的主从复制
3.1无数据添加slave
设置主从id
root@mysqlnode1 local\]# vim /etc/my.cnf
\[mysqld
datadir=/data/mysql
socket=/data/mysql/mysql.sock
symbolic-links=0
server-id=10
log-bin=mysql-bin
重启数据库
root@mysql-node1 mysql\]# /etc/init.d/mysqld restart
Shutting down MySQL. SUCCESS!
Starting MySQL. SUCCESS!
\[root@mysql-node2 mysql\]# vim /etc/my.cnf
\[mysqld
datadir=/data/mysql
socket=/data/mysql/mysql.sock
symbolic-links=0
server-id=20
root@mysql-node2 mysql\]# /etc/init.d/mysqld restart
Shutting down MySQL.. SUCCESS!
Starting MySQL. SUCCESS!
配置master
\[root@mysql-node1 mysql\]# mysql -uroot -p
进入数据库配置用户权限
生成专门用来做复制的用户,用于slave端做认证用
mysql\> CREATE USER 'repl'@'%' IDENTIFIED BY '123';
Query OK, 0 rows affected (0.00 sec)
对用户进行授权
mysql\> GRANT REPLICATION SLAVE ON \*.\* TO repl@'%';
Query OK, 0 rows affected (0.00 sec)
查看master的状态
mysql\> SHOW MASTER STATUS;
+------------------+----------+--------------+------------------+-------------------+
\| File \| Position \| Binlog_Do_DB \| Binlog_Ignore_DB \| Executed_Gtid_Set \|
+------------------+----------+--------------+------------------+-------------------+
\| mysql-bin.000001 \| 1151 \| \| \| \|
+------------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)
mysql\> show master status\\G
\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* 1. row \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*
File: mysql-bin.000001
Position: 1151
Binlog_Do_DB:
Binlog_Ignore_DB:
Executed_Gtid_Set:
1 row in set (0.00 sec)
配置slave
mysql\> change master to master_host='172.25.254.10',master_user='repl',master_password='123',master_log_file='mysql-bin.000001',master_log_pos=1151;------设置master
Query OK, 0 rows affected, 2 warnings (0.03 sec)
mysql\> start slave;
Query OK, 0 rows affected (0.00 sec)
查看slave的状态
mysql\> SHOW SLAVE STATUS\\G;
\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* 1. row \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*
Slave_IO_State: Waiting for master to send event
Master_Host: 172.25.254.10
Master_User: repl
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000001
Read_Master_Log_Pos: 1151
Relay_Log_File: mysql-node2-relay-bin.000002
Relay_Log_Pos: 320
Relay_Master_Log_File: mysql-bin.000001
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
在master上插入数据测试:
mysql\> create database jcl;
Query OK, 1 row affected (0.01 sec)
mysql\> create table jcl.userlist(
-\> username varchar(10) not null,
-\> password varchar(50) not null
-\> );
Query OK, 0 rows affected (0.00 sec)
mysql\> insert into jcl.userlist values ('jjj1','111');
Query OK, 1 row affected (0.02 sec)
mysql\> select \* from jcl.userlist
-\> ;
+----------+----------+
\| username \| password \|
+----------+----------+
\| jjj1 \| 111 \|
+----------+----------+
1 row in set (0.00 sec)
在20主机上可以看到数据
mysql\> select \* from jcl.userlist;
+----------+----------+
\| username \| password \|
+----------+----------+
\| jjj1 \| 111 \|
+----------+----------+
1 row in set (0.00 sec)
root@mysql-mha \~\]# ssh-keygen------生成密钥
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Created directory '/root/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:hJ8rwXhopRk0vubAr/cSdpokxmnLoP7vVpJ87Vny0i4 root@mysql-mha
The key's randomart image is:
+---\[RSA 2048\]----+
\| o \|
\| o . . \|
\| o o . \|
\| . X o . \|
\| .o.X = S \|
\|. \*\*+=.+ + . \|
\|.= =o== o \* \|
\|. o.=. . E o \|
\|..oo+=. +. \|
+----\[SHA256\]-----+
四台主机都要添加域名
\[root@mysql-mha \~\]# vim /etc/hosts
172.25.254.50 mysql-mha
172.25.254.10 mysql-node1
172.25.254.20 mysql-node2
172.25.254.30 mysql-node3
将公钥分发
\[root@mysql-mha \~\]# ssh-copy-id -i /root/.ssh/id_rsa.pub [email protected]
\[root@mysql-mha \~\]# ssh-copy-id -i /root/.ssh/id_rsa.pub [email protected]
\[root@mysql-mha \~\]# ssh-copy-id -i /root/.ssh/id_rsa.pub [email protected]
\[root@mysql-mha \~\]# vim /etc/ssh/sshd_config
UseDNS no
\[root@mysql-mha \~\]# cd ./.ssh/
\[root@mysql-mha .ssh\]# ls
id_rsa id_rsa.pub known_hosts
私钥分发
\[root@mysql-mha .ssh\]# scp id_rsa [email protected]:/root/.ssh/id_rsa
id_rsa 100% 1675 2.1MB/s 00:00
\[root@mysql-mha .ssh\]# scp id_rsa [email protected]:/root/.ssh/id_rsa
id_rsa 100% 1675 2.0MB/s 00:00
\[root@mysql-mha .ssh\]# scp id_rsa [email protected]:/root/.ssh/id_rsa
id_rsa 100% 1675 2.2MB/s 00:00
**设置半同步的主从模式**
**master** **上**
\[root@mysql-node1 mysql\]# /etc/init.d/mysqld stop
Shutting down MySQL............ SUCCESS!
\[root@mysql-node1 mysql\]# rm -fr /data/mysql/
\[root@mysql-node1 mysql\]# ls
\[root@mysql-node1 mysql\]# vim /etc/my.cnf
\[mysqld
root@mysql-mha conf\]# masterha_check_ssh --conf=/etc/masterha/app1.cnf
Sun Aug 25 22:39:10 2024 - \[warning\] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Sun Aug 25 22:39:10 2024 - \[info\] Reading application default configuration from /etc/masterha/app1.cnf..
Sun Aug 25 22:39:10 2024 - \[info\] Reading server configuration from /etc/masterha/app1.cnf..
Sun Aug 25 22:39:10 2024 - \[info\] Starting SSH connection tests..
Sun Aug 25 22:39:11 2024 - \[debug
Warning: Permanently added '172.25.254.20' (ECDSA) to the list of known hosts.
Sun Aug 25 22:39:11 2024 - [debug] ok.
Sun Aug 25 22:39:12 2024 - [info] All SSH connection tests passed successfully.
检测一主两从
root@mysql-mha conf\]# masterha_check_repl --conf=/etc/masterha/app1.cnf
Sun Aug 25 22:41:21 2024 - \[warning\] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Sun Aug 25 22:41:21 2024 - \[info\] Reading application default configuration from /etc/masterha/app1.cnf..
Sun Aug 25 22:41:21 2024 - \[info\] Reading server configuration from /etc/masterha/app1.cnf..
Sun Aug 25 22:41:21 2024 - \[info\] MHA::MasterMonitor version 0.58.
Sun Aug 25 22:41:22 2024 - \[info\] GTID failover mode = 1
Sun Aug 25 22:41:22 2024 - \[info\] Dead Servers:
Sun Aug 25 22:41:22 2024 - \[info\] Alive Servers:
Sun Aug 25 22:41:22 2024 - \[info\] 172.25.254.10(172.25.254.10:3306)
Sun Aug 25 22:41:22 2024 - \[info\] 172.25.254.20(172.25.254.20:3306)
Sun Aug 25 22:41:22 2024 - \[info\] 172.25.254.30(172.25.254.30:3306)
Sun Aug 25 22:41:22 2024 - \[info\] Alive Slaves:
Sun Aug 25 22:41:22 2024 - \[info\] 172.25.254.20(172.25.254.20:3306) Version=5.7.44-log (oldest major version between slaves) log-bin:enabled
Sun Aug 25 22:41:22 2024 - \[info\] GTID ON
Sun Aug 25 22:41:22 2024 - \[info\] Replicating from 172.25.254.10(172.25.254.10:3306)
Sun Aug 25 22:41:22 2024 - \[info\] Primary candidate for the new Master (candidate_master is set)
Sun Aug 25 22:41:22 2024 - \[info\] 172.25.254.30(172.25.254.30:3306) Version=5.7.44-log (oldest major version between slaves) log-bin:enabled
Sun Aug 25 22:41:22 2024 - \[info\] GTID ON
Sun Aug 25 22:41:22 2024 - \[info\] Replicating from 172.25.254.10(172.25.254.10:3306)
Sun Aug 25 22:41:22 2024 - \[info\] Not candidate for the new Master (no_master is set)
Sun Aug 25 22:41:22 2024 - \[info\] Current Alive Master: 172.25.254.10(172.25.254.10:3306)
Sun Aug 25 22:41:22 2024 - \[info\] Checking slave configurations..
Sun Aug 25 22:41:22 2024 - \[info\] read_only=1 is not set on slave 172.25.254.20(172.25.254.20:3306).
Sun Aug 25 22:41:22 2024 - \[info\] read_only=1 is not set on slave 172.25.254.30(172.25.254.30:3306).
Sun Aug 25 22:41:22 2024 - \[info\] Checking replication filtering settings..
Sun Aug 25 22:41:22 2024 - \[info\] binlog_do_db= , binlog_ignore_db=
Sun Aug 25 22:41:22 2024 - \[info\] Replication filtering check ok.
Sun Aug 25 22:41:22 2024 - \[info\] GTID (with auto-pos) is supported. Skipping all SSH and Node package checking.
Sun Aug 25 22:41:22 2024 - \[info\] Checking SSH publickey authentication settings on the current master..
Sun Aug 25 22:41:22 2024 - \[info\] HealthCheck: SSH to 172.25.254.10 is reachable.
Sun Aug 25 22:41:22 2024 - \[info
Mon Aug 26 03:05:31 2024 - [info] Current Alive Master: 172.25.254.10(172.25.254.10:3306)
Mon Aug 26 03:05:31 2024 - [info] Alive Slaves:
Mon Aug 26 03:05:31 2024 - [info] 172.25.254.20(172.25.254.20:3306) Version=5.7.44-log (oldest major version between slaves) log-bin:enabled
Mon Aug 26 03:05:31 2024 - [info] GTID ON
Mon Aug 26 03:05:31 2024 - [info] Replicating from 172.25.254.10(172.25.254.10:3306)
Mon Aug 26 03:05:31 2024 - [info] Primary candidate for the new Master (candidate_master is set)
Mon Aug 26 03:05:31 2024 - [info] 172.25.254.30(172.25.254.30:3306) Version=5.7.44-log (oldest major version between slaves) log-bin:enabled
Mon Aug 26 03:05:31 2024 - [info] GTID ON
Mon Aug 26 03:05:31 2024 - [info] Replicating from 172.25.254.10(172.25.254.10:3306)
Mon Aug 26 03:05:31 2024 - [info] Not candidate for the new Master (no_master is set)
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.10(172.25.254.10:3306)? (YES/no): yes
Mon Aug 26 03:05:34 2024 - [info] Executing FLUSH NO_WRITE_TO_BINLOG TABLES. This may take long time..
Mon Aug 26 03:05:34 2024 - [info] ok.
Mon Aug 26 03:05:34 2024 - [info] Checking MHA is not monitoring or doing failover..
Mon Aug 26 03:05:34 2024 - [info] Checking replication health on 172.25.254.20..
Mon Aug 26 03:05:34 2024 - [info] ok.
Mon Aug 26 03:05:34 2024 - [info] Checking replication health on 172.25.254.30..
Mon Aug 26 03:05:34 2024 - [info] ok.
Mon Aug 26 03:05:34 2024 - [info] 172.25.254.20 can be new master.
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
Mon Aug 26 03:05:36 2024 - [info] Locking all tables on the orig master to reject updates from everybody (including root):
Mon Aug 26 03:05:36 2024 - [info] Executing FLUSH TABLES WITH READ LOCK..
Mon Aug 26 03:05:36 2024 - [info] ok.
Mon Aug 26 03:05:36 2024 - [info] Orig master binlog:pos is mysql-bin.000004:194.
Mon Aug 26 03:05:36 2024 - [info] Waiting to execute all relay logs on 172.25.254.20(172.25.254.20:3306)..
Mon Aug 26 03:05:36 2024 - [info] master_pos_wait(mysql-bin.000004:194) completed on 172.25.254.20(172.25.254.20:3306). Executed 0 events.
Mon Aug 26 03:05:36 2024 - [info] done.
Mon Aug 26 03:05:36 2024 - [info] Getting new master's binlog name and position..
Mon Aug 26 03:05:36 2024 - [info] mysql-bin.000004:194
Mon Aug 26 03:05:36 2024 - [info] All other slaves should start replication from here. Statement should be: CHANGE MASTER TO MASTER_HOST='172.25.254.20', MASTER_PORT=3306, MASTER_AUTO_POSITION=1, MASTER_USER='jcl', MASTER_PASSWORD='xxx';
Mon Aug 26 03:05:36 2024 - [info]
Mon Aug 26 03:05:36 2024 - [info] * Switching slaves in parallel..
Mon Aug 26 03:05:36 2024 - [info]
Mon Aug 26 03:05:36 2024 - [info] -- Slave switch on host 172.25.254.30(172.25.254.30:3306) started, pid: 72716
Mon Aug 26 03:05:36 2024 - [info]
Mon Aug 26 03:05:38 2024 - [info] Log messages from 172.25.254.30 ...
Mon Aug 26 03:05:38 2024 - [info]
Mon Aug 26 03:05:36 2024 - [info] Waiting to execute all relay logs on 172.25.254.30(172.25.254.30:3306)..
Mon Aug 26 03:05:36 2024 - [info] master_pos_wait(mysql-bin.000004:194) completed on 172.25.254.30(172.25.254.30:3306). Executed 0 events.
Mon Aug 26 03:05:36 2024 - [info] done.
Mon Aug 26 03:05:36 2024 - [info] Resetting slave 172.25.254.30(172.25.254.30:3306) and starting replication from the new master 172.25.254.20(172.25.254.20:3306)..
Mon Aug 26 03:05:36 2024 - [info] Executed CHANGE MASTER.
Mon Aug 26 03:05:37 2024 - [info] Slave started.
Mon Aug 26 03:05:38 2024 - [info] End of log messages from 172.25.254.30 ...
Mon Aug 26 03:05:38 2024 - [info]
Mon Aug 26 03:05:38 2024 - [info] -- Slave switch on host 172.25.254.30(172.25.254.30:3306) succeeded.
Mon Aug 26 03:05:38 2024 - [info] Unlocking all tables on the orig master:
Mon Aug 26 03:05:38 2024 - [info] Executing UNLOCK TABLES..
Mon Aug 26 03:05:38 2024 - [info] ok.
Mon Aug 26 03:05:38 2024 - [info] Starting orig master as a new slave..
Mon Aug 26 03:05:38 2024 - [info] Resetting slave 172.25.254.10(172.25.254.10:3306) and starting replication from the new master 172.25.254.20(172.25.254.20:3306)..
Mon Aug 26 03:05:38 2024 - [info] Executed CHANGE MASTER.
Mon Aug 26 03:05:39 2024 - [info] Slave started.
Mon Aug 26 03:05:39 2024 - [info] All new slave servers switched successfully.
Mon Aug 26 03:05:39 2024 - [info]
Mon Aug 26 03:05:39 2024 - [info] * Phase 5: New master cleanup phase..
Mon Aug 26 03:05:39 2024 - [info]
Mon Aug 26 03:05:39 2024 - [info] 172.25.254.20: Resetting slave info succeeded.
Mon Aug 26 03:05:39 2024 - [info] Switching master to 172.25.254.20(172.25.254.20:3306) completed successfully.
可以看到master切换到20上:
6.6.2故障手动切换
root@mysql-node2 \~\]# /etc/init.d/mysqld stop
Shutting down MySQL............ SUCCESS!
\[root@mysql-mha conf\]# masterha_master_switch \\
--master_state=dead \\
--conf=/etc/masterha/app1.cnf \\
--dead_master_host=172.25.254.20 \\
--dead_master_port=3306 \\
--new_master_host=172.25.254.10 \\
--new_master_port=3306 \\
--ignore_last_failover
--dead_master_ip=\ is not set. Using 172.25.254.20.
--dead_master_port=\ is not set. Using 3306.
Mon Aug 26 03:10:10 2024 - \[warning\] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Mon Aug 26 03:10:10 2024 - \[info\] Reading application default configuration from /etc/masterha/app1.cnf..
Mon Aug 26 03:10:10 2024 - \[info\] Reading server configuration from /etc/masterha/app1.cnf..
Mon Aug 26 03:10:10 2024 - \[info\] MHA::MasterFailover version 0.58.
Mon Aug 26 03:10:10 2024 - \[info\] Starting master failover.
Mon Aug 26 03:10:10 2024 - \[info
Starting master switch from 172.25.254.20(172.25.254.20:3306) to 172.25.254.10(172.25.254.10:3306)? (yes/NO): yes
Mon Aug 26 03:10:16 2024 - [info] New master decided manually is 172.25.254.10(172.25.254.10:3306)
Mon Aug 26 03:10:16 2024 - [info]
Mon Aug 26 03:10:16 2024 - [info] * Phase 3.3: New Master Recovery Phase..
Mon Aug 26 03:10:16 2024 - [info]
Mon Aug 26 03:10:16 2024 - [info] Waiting all logs to be applied..
Mon Aug 26 03:10:16 2024 - [info] done.
Mon Aug 26 03:10:16 2024 - [info] Getting new master's binlog name and position..
Mon Aug 26 03:10:16 2024 - [info] mysql-bin.000004:438
Mon Aug 26 03:10:16 2024 - [info] All other slaves should start replication from here. Statement should be: CHANGE MASTER TO MASTER_HOST='172.25.254.10', MASTER_PORT=3306, MASTER_AUTO_POSITION=1, MASTER_USER='jcl', MASTER_PASSWORD='xxx';
Mon Aug 26 03:10:16 2024 - [info] * Phase 4.1: Starting Slaves in parallel..
Mon Aug 26 03:10:16 2024 - [info]
Mon Aug 26 03:10:16 2024 - [info] -- Slave recovery on host 172.25.254.30(172.25.254.30:3306) started, pid: 73590. Check tmp log /var/log/masterha/app1/172.25.254.30_3306_20240826031010.log if it takes time..
Mon Aug 26 03:10:18 2024 - [info]
Mon Aug 26 03:10:18 2024 - [info] Log messages from 172.25.254.30 ...
Mon Aug 26 03:10:18 2024 - [info]
Mon Aug 26 03:10:16 2024 - [info] Resetting slave 172.25.254.30(172.25.254.30:3306) and starting replication from the new master 172.25.254.10(172.25.254.10:3306)..
Mon Aug 26 03:10:16 2024 - [info] Executed CHANGE MASTER.
Mon Aug 26 03:10:17 2024 - [info] Slave started.
Mon Aug 26 03:10:17 2024 - [info] gtid_wait(347da1c1-6303-11ef-93da-000c2972a3ac:1,
b1367cca-6302-11ef-a3aa-000c291d64ff:1-6) completed on 172.25.254.30(172.25.254.30:3306). Executed 0 events.
Mon Aug 26 03:10:18 2024 - [info] End of log messages from 172.25.254.30.
Mon Aug 26 03:10:18 2024 - [info] -- Slave on host 172.25.254.30(172.25.254.30:3306) started.
Mon Aug 26 03:10:18 2024 - [info] All new slave servers recovered successfully.
Mon Aug 26 03:10:18 2024 - [info]
Mon Aug 26 03:10:18 2024 - [info] * Phase 5: New master cleanup phase..
Mon Aug 26 03:10:18 2024 - [info]
Mon Aug 26 03:10:18 2024 - [info] Resetting slave info on the new master..
Mon Aug 26 03:10:18 2024 - [info] 172.25.254.10: Resetting slave info succeeded.
Mon Aug 26 03:10:18 2024 - [info] Master failover to 172.25.254.10(172.25.254.10:3306) completed successfully.
Mon Aug 26 03:10:18 2024 - [info]
----- Failover Report -----
app1: MySQL Master failover 172.25.254.20(172.25.254.20:3306) to 172.25.254.10(172.25.254.10:3306) succeeded
Master 172.25.254.20(172.25.254.20:3306) is down!
Check MHA Manager logs at mysql-mha for details.
Started manual(interactive) failover.
Selected 172.25.254.10(172.25.254.10:3306) as a new master.
172.25.254.10(172.25.254.10:3306): OK: Applying all logs succeeded.
172.25.254.30(172.25.254.30:3306): OK: Slave started, replicating from 172.25.254.10(172.25.254.10:3306)
172.25.254.10(172.25.254.10:3306): Resetting slave info succeeded.
Master failover to 172.25.254.10(172.25.254.10:3306) completed successfully.
root@mysql-node1 \~\]# /etc/init.d/mysqld stop
Shutting down MySQL........... SUCCESS!
\[root@mysql-mha masterha\]# cd /var/log/masterha/app1
\[root@mysql-mha app1\]# ls
app1.failover.complete
将锁文件删除否者自动切换master切换不了
\[root@mysql-mha app1\]# rm app1.failover.complete
\[root@mysql-mha masterha\]# masterha_manager --conf=/etc/masterha/app1.cnf
Mon Aug 26 03:18:36 2024 - \[warning\] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Mon Aug 26 03:18:36 2024 - \[info\] Reading application default configuration from /etc/masterha/app1.cnf..
Mon Aug 26 03:18:36 2024 - \[info\] Reading server configuration from /etc/masterha/app1.cnf..
Mon Aug 26 03:18:48 2024 - \[warning\] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Mon Aug 26 03:18:48 2024 - \[info\] Reading application default configuration from /etc/masterha/app1.cnf..
Mon Aug 26 03:18:48 2024 - \[info\] Reading server configuration from /etc/masterha/app1.cnf..
在20上可以看到master信息
mysql\> show master status\\G;
\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* 1. row \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*
File: mysql-bin.000005
Position: 194
Binlog_Do_DB:
Binlog_Ignore_DB:
Executed_Gtid_Set: 347da1c1-6303-11ef-93da-000c2972a3ac:1,
b1367cca-6302-11ef-a3aa-000c291d64ff:1-6
1 row in set (0.00 sec)
ERROR:
No query specified
**恢复故障**
\[root@mysql-node1 \~\]# /etc/init.d/mysqld start
Starting MySQL. SUCCESS!
\[root@mysql-node1 \~\]# mysql -p123
mysql\> stop slave;
Query OK, 0 rows affected, 1 warning (0.00 sec)
mysql\> CHANGE MASTER TO MASTER_HOST='172.25.254.20', MASTER_USER='jcl',MASTER_PASSWORD='123', MASTER_AUTO_POSITION=1;
Query OK, 0 rows affected, 2 warnings (0.00 sec)
mysql\> start slave;
Query OK, 0 rows affected (0.00 sec)
mysql\> show slave status\\G;
\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* 1. row \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*
Slave_IO_State: Waiting for master to send event
Master_Host: 172.25.254.20
Master_User: jcl
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000005
Read_Master_Log_Pos: 194
Relay_Log_File: mysql-node1-relay-bin.000002
Relay_Log_Pos: 367
Relay_Master_Log_File: mysql-bin.000005
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
6.6.4为MHA添加VIP功能
MHA主机上
启用VIP
root@mysql-mha \~\]# ls
anaconda-ks.cfg Downloads master_ip_failover Music Templates
Desktop initial-setup-ks.cfg MHA-7 Pictures Videos
Documents ks.cfg MHA-7.zip Public
\[root@mysql-mha \~\]# ls
anaconda-ks.cfg Downloads master_ip_failover MHA-7.zip Public
Desktop initial-setup-ks.cfg master_ip_online_change Music Templates
Documents ks.cfg MHA-7 Pictures Videos
\[root@mysql-mha \~\]# cp master_ip_\* /usr/local/bin/
\[root@mysql-mha \~\]# chmod +x /usr/local/bin/master_ip_\*
\[root@mysql-mha \~\]# vim /usr/local/bin/master_ip_failover
my $vip = '172.25.254.100/24';
\[root@mysql-mha \~\]# vim /usr/local/bin/master_ip_online_change
my $vip = '172.25.254.100/24';
\[root@mysql-mha \~\]# vim /etc/masterha/app1.cnf
master_ip_failover_script= /usr/local/bin/master_ip_failover
# shutdown_script= /script/masterha/power_manager
# report_script= /script/masterha/send_report
master_ip_online_change_script= /usr/local/bin/master_ip_online_change
给master主机配置VIP
root@mysql-node2 \~\]# ip a a 172.25.254.100/24 dev eth0
\[root@mysql-node2 \~\]# ip a
2: eth0: \ mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 00:0c:29:72:a3:ac brd ff:ff:ff:ff:ff:ff
inet 172.25.254.20/24 brd 172.25.254.255 scope global noprefixroute eth0
valid_lft forever preferred_lft forever
inet 172.25.254.100/24 scope global secondary eth0
测试:
模拟故障
root@mysql-node2 \~\]# /etc/init.d/mysqld stop
Shutting down MySQL............ SUCCESS!
启动自动检测,master可以切换但是VIP不会跳动,因为我们配置文件中配了手动跳转
\[root@mysql-mha \~\]# masterha_manager --conf=/etc/masterha/app1.cnf
Mon Aug 26 04:23:27 2024 - \[warning\] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Mon Aug 26 04:23:27 2024 - \[info\] Reading application default configuration from /etc/masterha/app1.cnf..
Mon Aug 26 04:23:27 2024 - \[info\] Reading server configuration from /etc/masterha/app1.cnf..
Mon Aug 26 04:24:36 2024 - \[warning\] Global configuration file /etc/masterha_default.cnf not found. Skipping.
Mon Aug 26 04:24:36 2024 - \[info\] Reading application default configuration from /etc/masterha/app1.cnf..
Mon Aug 26 04:24:36 2024 - \[info\] Reading server configuration from /etc/masterha/app1.cnf..
恢复故障
\[root@mysql-node2 \~\]# /etc/init.d/mysqld start
Starting MySQL. SUCCESS!
\[root@mysql-node2 \~\]# mysql -p123
mysql\> CHANGE MASTER TO MASTER_HOST='172.25.254.10', MASTER_USER='jcl',MASTER_PASSWORD='lee', MASTER_AUTO_POSITION=1;
Query OK, 0 rows affected, 2 warnings (0.01 sec)
将20重新配置成master
手动切换master
\[root@mysql-mha \~\]# masterha_master_switch --conf=/etc/masterha/app1.cnf --master_state=alive --new_master_host=172.25.254.10 --new_master_port=3306 --orig_master_is_new_slave --running_updates_limit=10000
可以查看到VIP跳转到10master上
\[root@mysql-node1 \~\]# ip a
2: eth0: \ mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 00:0c:29:1d:64:ff brd ff:ff:ff:ff:ff:ff
inet 172.25.254.10/24 brd 172.25.254.255 scope global noprefixroute eth0
valid_lft forever preferred_lft forever
inet 172.25.254.11/32 scope global eth0
valid_lft forever preferred_lft forever
inet 172.25.254.100/24 scope global secondary eth0