Home Database Mysql Tutorial [MySQL-MM] 生产环境自动恢复MM中一台M2库的过程,分享从零开始_MySQL

[MySQL-MM] 生产环境自动恢复MM中一台M2库的过程,分享从零开始_MySQL

Jun 01, 2016 pm 01:28 PM
start from scratch repair

bitsCN.com

[MySQL-MM] 生产环境自动恢复MM中一台M2库的过程,分享从零开始写的自动化重建脚本以及思路
 

1  简介

有N0+组MM节点,如果每次都是手动修复,一次两次还好,次数多了难免有些无用功了,因为建立自动脚本,避免每次都在M库手动备份,手动copy,手动建立连接,手动设置复制信息的过程,我的目的,一个sh run command,所有的事情都准备妥当了,然后就泡一杯雀巢咖啡或者普洱茶,在一边静静的等待或者还可以借此小憩片刻,看着M2修复成功:

 

2  环境

必须是MM架构,而且一台主库M1是完好无损的,一台主库M2可以根据M1主库来进行重建;如果MS架构,自己可以稍微做一下脚本修改动作,也能使用,架构如下图所示:

 

[MySQL-MM] 生产环境自动恢复MM中一台M2库的过程,分享从零开始_MySQL

 

3  总体思路,建立主脚本a_build_rep.sh

思路分为13个步骤,如a_build_rep.sh脚本中的备注 

#!/bin/bash  

set -x  

set -e  

set -u  

  

#(1)准备好目录以及全局变量  

BACKUP_FOLDER=/mysqldata/shared/backup2  

TEMP_SETUP_FOLDER=/tmp/sharding_setup_1  

MYSQL_EXEC=/opt/mysql/product/mysql/bin/mysql  

  

#(2)设置参数,$1是要修复的M2库,$2是正在运行良好的M1库  

db1=$2  

db2=$1  

  

  

#(3)在这里设置好一些所必用的环境变量,比如备份用户,备份用户密码,以及复制帐号密码,甚至一些super帐号  

 BACKUP_USER="backupuser"  

 BACKUP_PASSWORD="#xx$"  

 AGENT_PASSWORD='#xx$'  

 REPLICATION_USER=replication  

 REPLICATION_PASSWORD='#xx$'  

 REPLICA_PASSWORD='#xx$'  

 MONITOR_PASSWORD='#xx$'  

 WRITER_ETH='eth0'  

 SUPER_USER=backupuser  

 SUPER_PASSWORD='#xx$'  

  

#(4)由于磁盘空间所限,建立这些目录,如果目录已经存在,则清空这些目录。  

ssh -t $db1 "rm -rf $TEMP_SETUP_FOLDER && mkdir -p $TEMP_SETUP_FOLDER && chmod 777 $TEMP_SETUP_FOLDER"  

ssh -t $db2 "rm -rf $TEMP_SETUP_FOLDER && mkdir -p $TEMP_SETUP_FOLDER && chmod 777 $TEMP_SETUP_FOLDER"  

  

  

#(5)将在线备份脚本 create_hot_backup.sh copy到即将要进行在线备份的M1库上面,并且调用此脚本进行在线备份,此备份用来去另一个M2库上进行恢复。  

echo "Taking hotbackup on db1..."  

scp create_hot_backup.sh $db1:$TEMP_SETUP_FOLDER/create_hot_backup.sh  

  

  

ssh -t $db1 "sudo -u mysql mkdir -p $BACKUP_FOLDER"  

ssh -t $db1 "sudo -i -u mysql $TEMP_SETUP_FOLDER/create_hot_backup.sh '$BACKUP_FOLDER' '$BACKUP_USER' '$BACKUP_PASSWORD' N Y"  

  

#(6)停止M2的MySQL服务  

echo "Hotbackup completed. Now restore the hotbackup on db2..."  

ssh -t $db2 "sudo /etc/init.d/mysql stop"  

#(7)将restore_hot_backup.sh脚本copy到M2库上,并调用此脚本在M2库上面进行恢复操作。  

scp restore_hot_backup.sh $db2:$TEMP_SETUP_FOLDER/restore_hot_backup.sh  

ssh -t $db2 "sudo -i -u mysql $TEMP_SETUP_FOLDER/restore_hot_backup.sh '$BACKUP_FOLDER' '$BACKUP_USER' '$BACKUP_PASSWORD' '$TEMP_SETUP_FOLDER' Y"  

#(8)恢复完,启动M2库。  

ssh -t $db2 "sudo /etc/init.d/mysql start"  

echo "Restore completed. Now rebuild replication between db1 and db2..."  

#(9)建立M2上面的复制功能,M1为master,M2为slave;  

echo "Setup replication from db1 to db2"  

echo "Setup replication from db1 to db2"  

scp $db2:$TEMP_SETUP_FOLDER/xtrabackup_binlog_info.master xtrabackup_binlog_info.db1  

binlog_filename=`cat xtrabackup_binlog_info.db1 | awk '{print $1}'`  

binlog_pos=`cat xtrabackup_binlog_info.db1 | awk '{print $2}'`  

$MYSQL_EXEC -h$db2 -ummm_agent -p"$AGENT_PASSWORD" -e "SLAVE STOP;"  

$MYSQL_EXEC -h$db2 -ummm_agent -p"$AGENT_PASSWORD" -e "CHANGE MASTER TO MASTER_HOST='$db1', MASTER_PORT=3306, MASTER_USER='replication', MASTER_PASSWORD='$REPLICATION_PASSWORD', MASTER_LOG_FILE='$binlog_filename', MASTER_LOG_POS=$binlog_pos;"  

$MYSQL_EXEC -h$db2 -ummm_agent -p"$AGENT_PASSWORD" -e "SLAVE START;"  

  

#(10)Check M2库的复制功能状态,是否搭建成功  

echo "Check db2 replication status."  

if ! $MYSQL_EXEC -h$db2 -ummm_agent -p"$AGENT_PASSWORD" -e "SHOW SLAVE STATUS/G" | grep "Slave_SQL_Running: Yes"  

then  

    echo "[ERROR] Cannot start slave on db2!"  

    exit -1  

fi  

  

#(11)建立M1上面的复制功能,M2为master,M1为slave;  

echo "Setup replication from db2 to db1"  

./build_replication.sh $db2 $db1  

  

#(12)Check M1库的复制功能状态,是否搭建成功  

echo "Check db1 replication status."  

if ! $MYSQL_EXEC -h$db1 -ummm_agent -p"$AGENT_PASSWORD" -e "SHOW SLAVE STATUS/G" | grep "Slave_SQL_Running: Yes"  

then  

    echo "[ERROR] Cannot start slave on db1!"  

    exit -1  

fi  

  

#(13)清除临时目录的备份文件,释放磁盘空间  

echo "Clean up the shared storage folder and tmp folder."  

ssh -t $db1 "rm -rf $TEMP_SETUP_FOLDER"  

ssh -t $db2 "rm -rf $TEMP_SETUP_FOLDER"  

ssh -t $db1 "sudo -u mysql rm -rf $BACKUP_FOLDER"  

  

  

echo 'Rebuild secondary done!'  

 

 

 

4 分脚本(1),M1库上的在线备份脚本create_hot_backup.sh详情

#!/bin/bash  

set -x  

set -e  

  

# !!! This file need to be run in mysql !!!  

#(1)设置一些基本参数,$1:备份文件;$2:备份用户名;$3:备份用户名密码;$4:是否需要安全模式备份; $5:是否需要rsync信息  

BACKUP_FOLDER=$1  

HOTBACKUP_USER=$2  

HOTBACKUP_PASSWORD=$3  

NEED_SAFE_SLAVE=$4  

NEED_RSYNC=$5  

  

#(2)参数验证,如果需要,则在接下来的备份命令中加上--safe-slave-backup或者--rsync参数  

INNOBACKUP_OPT=""  

if [[ $NEED_SAFE_SLAVE == "Y" ]]  

then  

    INNOBACKUP_OPT=$INNOBACKUP_OPT" --safe-slave-backup"  

fi  

  

if [[ $NEED_RSYNC == "Y" ]]  

then  

    INNOBACKUP_OPT=$INNOBACKUP_OPT" --rsync"  

fi  

  

#(3)开始执行备份命令  

echo "Run xtrabackup to take hotbackup..."  

export MYSQL_HOME=/opt/mysql/product/mysql  

innobackupex $INNOBACKUP_OPT --user=$HOTBACKUP_USER --password=$HOTBACKUP_PASSWORD $BACKUP_FOLDER  

 

 

 

 

5 分脚本(2)restore_hot_backup.sh,在M2库上进行数据恢复操作。

#!/bin/bash  

set -x  

set -e  

  

#(1)$1:备份数据存放的目录;$2:恢复用户;$3:恢复用户密码; $4:临时文件夹目录; $5:是否需要resync;  

  

SHARED_STORAGE_PATH=$1  

HOTBACKUP_USER=$2  

HOTBACKUP_PASSWORD=$3  

TEMP_SETUP_FOLDER=$4  

NEED_RSYNC=$5  

  

#(2)是否需要加上resync参数  

INNOBACKUP_OPT=""  

if [[ $NEED_RSYNC == "Y" ]]  

then  

    INNOBACKUP_OPT="--rsync"  

fi  

  

#(3)把MYSQL_HOME放入环境变量中  

export MYSQL_HOME=/opt/mysql/product/mysql  

  

#(4)如果目录存在的话,删除这些数据库目录下的旧文件  

echo "Delete existing mysql instance..."  

rm -rf /mysqldata/data  

rm -rf /mysqldata/shared/restore  

rm -rf /mysqldata/binlog/*  

rm -rf /mysqldata/iblogs/*  

  

#(5)开始准备数据目录以及备份数据目录,如今不存在就新建,并且赋予linux系统帐号mysql的操作权限。  

echo "Apply and copy back backup files..."  

mkdir -p /mysqldata/data && chown -R mysql:mysql /mysqldata/data && chmod 700 /mysqldata/data  

mkdir -p /mysqldata/shared/restore  

backup_folder=$(ls -1 $SHARED_STORAGE_PATH | sort -rn | head -n1) #这个ls的找最新生成的文件的命令很实用,可以借鉴。  

#(6)如果为了安全起见可以备份文件数据目录copy到指定的恢复临时目录,然后在临时目录进行--apply-log以及--copy-back等操作,但是我为了效率,就去掉了copy的时间(copy时间大概需要1小时左右),直接在原来的备份数据目录进行--apply-log以及--copy-back操作  

  

# cp -r $SHARED_STORAGE_PATH/${backup_folder}/* /mysqldata/shared/restore/  

# innobackupex --user=$HOTBACKUP_USER --password=$HOTBACKUP_PASSWORD --ibbackup xtrabackup --apply-log /mysqldata/shared/restore/  

# innobackupex --user=$HOTBACKUP_USER --password=$HOTBACKUP_PASSWORD $INNOBACKUP_OPT --copy-back /mysqldata/shared/restore/  

  

innobackupex --user=$HOTBACKUP_USER --password=$HOTBACKUP_PASSWORD --ibbackup xtrabackup --apply-log $SHARED_STORAGE_PATH/${backup_folder}/  

innobackupex --user=$HOTBACKUP_USER --password=$HOTBACKUP_PASSWORD $INNOBACKUP_OPT --copy-back $SHARED_STORAGE_PATH/${backup_folder}/  

  

#(7)将原来的备份中的复制点信息copy到临时目录下,并赋予对copy后的文件赋予相应的权限。  

cp -f $SHARED_STORAGE_PATH/${backup_folder}/xtrabackup_binlog_info $TEMP_SETUP_FOLDER/xtrabackup_binlog_info.master  

chmod 644 $TEMP_SETUP_FOLDER/xtrabackup_binlog_info.master  

  

#(8)恢复成功后,删除原来的临时目录的备份数据,释放磁盘空间,如果你磁盘空间足够,这一步可以省略。  

echo "Remove backup files..."  

rm -rf $SHARED_STORAGE_PATH/${backup_folder}/  

 

 

6 搭建M1上面的复制,M2为master,M1为slave,MM架构。

#!/bin/sh  

set -x  

set -u  

set -e  

#(1)$1:master主库服务器主机名或者IP地址; $2:slave主库服务器主机名或者IP地址;  

MASTER_SERVER=$1  

SLAVE_SERVER=$2  

  

MYSQL_CNF_DIR='/opt/mysql/product/mysql/etc'  

MYSQL_EXEC='/opt/mysql/product/mysql/bin/mysql'  

  

#(2)从$1主库上面获取复制点信息  

master_file=$(ssh -t $MASTER_SERVER "$MYSQL_EXEC -u$SUPER_USER -p$SUPER_PASSWORD -e 'SHOW MASTER STATUS/G'" | grep "File" | awk '{print $2}')  

master_file=$(sed -e 's/[/r/n]//'

master_pos=$(ssh -t $MASTER_SERVER "$MYSQL_EXEC -u$SUPER_USER -p$SUPER_PASSWORD -e 'SHOW MASTER STATUS/G'" | grep "Position" | awk '{print $2}')  

master_pos=$(sed -e 's/[/r/n]//'

  

#(3)执行搭建复制sql命令操作:  

ssh -t $SLAVE_SERVER "$MYSQL_EXEC -u$SUPER_USER -p$SUPER_PASSWORD -e /"  

STOP SLAVE;  

RESET SLAVE;  

CHANGE MASTER TO master_host='$MASTER_SERVER', master_port=3306, master_user='$REPLICATION_USER',  

    master_password='$REPLICATION_PASSWORD', master_log_file='$master_file', master_log_pos=$master_pos;  

START SLAVE;  

/""  

 

 

 

7  执行操作

在根目录下,执行 

[root@xx-control xx]# nohup /home/cc/a_build_rep.sh m2.xx.com m1-.xx.com .  >  rebuild.log &,放在后台执行,使用nohup以防止屏幕突然失效。

然后用 tail -f rebuild.log 查看进展:

[root@xx-control xx]# tail -f rebuild.log  

+ set -e  

+ BACKUP_FOLDER=/mysqldata/shared/backup  

Run xtrabackup to take hotbackup...  

+ HOTBACKUP_USER=backupuser  

+ HOTBACKUP_PASSWORD='#xxx$'  

+ NEED_SAFE_SLAVE=N  

+ NEED_RSYNC=Y  

+ INNOBACKUP_OPT=  

+ [[ N == /Y ]]  

+ [[ Y == /Y ]]  

+ INNOBACKUP_OPT=' --rsync'  

+ echo 'Run xtrabackup to take hotbackup...'  

+ export MYSQL_HOME=/opt/mysql/product/mysql  

+ MYSQL_HOME=/opt/mysql/product/mysql  

+ innobackupex --rsync --user=user'--password=#xxx$' /mysqldata/shared/backup  

.................................................................................  

................................................................................  

Rebuild secondary done!  

 

bitsCN.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

This Apple ID is not yet in use in the iTunes Store: Fix This Apple ID is not yet in use in the iTunes Store: Fix Jun 10, 2024 pm 05:42 PM

When logging into iTunesStore using AppleID, this error saying "This AppleID has not been used in iTunesStore" may be thrown on the screen. There are no error messages to worry about, you can fix them by following these solution sets. Fix 1 – Change Shipping Address The main reason why this prompt appears in iTunes Store is that you don’t have the correct address in your AppleID profile. Step 1 – First, open iPhone Settings on your iPhone. Step 2 – AppleID should be on top of all other settings. So, open it. Step 3 – Once there, open the “Payment & Shipping” option. Step 4 – Verify your access using Face ID. step

How to fix red-eye on iPhone How to fix red-eye on iPhone Feb 23, 2024 pm 04:31 PM

So, you took some great photos at your last party, but unfortunately, most of the photos you took were of red eyes. The photo itself is great, but the red eyes in it kind of ruin the image. Not to mention, some of those party photos might be from your friends’ phones. Today we'll look at how to remove red eye from photos. What causes the red eyes in the photo? Red-eye often occurs when taking photos with flash. This is because the light from the flash shines directly into the back of the eye, causing the blood vessels under the eye to reflect the light, giving the effect of red eyes in the photo. Fortunately, with the continuous advancement of technology, some cameras are now equipped with red-eye correction functions that can effectively solve this problem. By using this feature, the camera takes pictures

How to solve the problem of Win11 failing to verify credentials? How to solve the problem of Win11 failing to verify credentials? Jan 30, 2024 pm 02:03 PM

When a Win11 user uses credentials to log in, he or she receives an error message stating that your credentials cannot be verified. What is going on? After the editor investigated this problem, I found that there may be several different situations that directly or indirectly cause this problem. Let's take a look with the editor.

An easy guide to fixing Windows 11 blue screen issues An easy guide to fixing Windows 11 blue screen issues Dec 27, 2023 pm 02:26 PM

Many friends always encounter blue screens when using computer operating systems. Even the latest win11 system cannot escape the fate of blue screens. Therefore, today I have brought you a tutorial on how to repair win11 blue screens. No matter whether you have encountered a blue screen or not, you can learn it first in case you need it. How to fix win11 blue screen method 1. If we encounter a blue screen, first restart the system and check whether it can start normally. 2. If it can start normally, right-click "Computer" on the desktop and select "Manage" 3. Then expand "System Tools" on the left side of the pop-up window and select "Event Viewer" 4. In the event viewer, we will You can see what specific problem caused the blue screen. 5. Then just follow the blue screen situation and events

Comprehensive Guide to PHP 500 Errors: Causes, Diagnosis and Fixes Comprehensive Guide to PHP 500 Errors: Causes, Diagnosis and Fixes Mar 22, 2024 pm 12:45 PM

A Comprehensive Guide to PHP 500 Errors: Causes, Diagnosis, and Fixes During PHP development, we often encounter errors with HTTP status code 500. This error is usually called "500InternalServerError", which means that some unknown errors occurred while processing the request on the server side. In this article, we will explore the common causes of PHP500 errors, how to diagnose them, and how to fix them, and provide specific code examples for reference. Common causes of 1.500 errors 1.

How to fix the volume cannot be adjusted in WIN10 How to fix the volume cannot be adjusted in WIN10 Mar 27, 2024 pm 05:16 PM

1. Press win+r to open the run window, enter [regedit] and press Enter to open the registry editor. 2. In the opened registry editor, click to expand [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionRun]. In the blank space on the right, right-click and select [New - String Value], and rename it to [systray.exe]. 3. Double-click to open systray.exe, modify its numerical data to [C:WindowsSystem32systray.exe], and click [OK] to save the settings.

How to fix the problem of being unable to access the Internet due to abnormal network card driver How to fix the problem of being unable to access the Internet due to abnormal network card driver Jan 06, 2024 pm 06:33 PM

Some friends find that their computers cannot access the Internet because of abnormal network card drivers. They want to know how to fix it. In fact, current systems have built-in driver repair functions, so we only need to manually update the driver. If it doesn’t work, then we can fix it. Driver software can be used. How to fix the problem that the network card driver is abnormal and cannot connect to the Internet: PS: If this problem occurs suddenly, you can try restarting the computer first. If it still doesn't work after restarting, continue with the following operations. Method 1: 1. First, right-click on the taskbar and select "Start Menu" 2. Open "Device Manager" in the right-click menu. 3. Click "Network Adapter", then select "Update Driver" and click "Automatically search for driver". After the update is completed, you can surf the Internet normally. 5. Some users are also affected by the problem.

Fix aksfridge.sys blue screen error in Windows 11/10 Fix aksfridge.sys blue screen error in Windows 11/10 Feb 11, 2024 am 11:30 AM

If you encounter aksfridge.sys blue screen error after upgrading to Windows 11 or Windows 10, this article will provide you with solutions. You can try the following methods to successfully resolve this issue. The genuine aksfridge.sys file is the software component of AladdinHASP from AladdinKnowledgeSystems. AladdinHASP (Hardware Anti-Software Piracy) is a suite of digital rights management (DRM) protection and licensing software. Aksfridge.sys is a filter driver necessary for HASP to function properly. This component adds support for specialized external devices. Hardware Anti-Software Piracy, also known as AladdinHAS

See all articles