域名預(yù)訂/競(jìng)價(jià),好“米”不錯(cuò)過
這篇文章主要介紹了linux使用mysqldump+expect+crontab實(shí)現(xiàn)mysql周期冷備份,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
目錄
一、遇到的問題
二、思路
三、代碼
一、遇到的問題
我們使用過mysqldump都知道,使用該命令后,需要我們手動(dòng)輸入 mysql的密碼,那么我們就不能夠直接在crontab中使用mysqldump實(shí)現(xiàn)周期備份。其實(shí)我們可以使用expect腳本自動(dòng)輸入密碼 ,從而實(shí)現(xiàn)真正的周期備份。如果你不知道什么是expect,建議先請(qǐng)看這篇文章:https://www.jb51.net/article/197865.htm
二、思路
創(chuàng)建一個(gè)utils文件,里面存放shell腳本,包括mysqldump、scp等命令
使用expect腳本,執(zhí)行utils內(nèi)的腳本,并為其自動(dòng)輸入密碼
最后使用驅(qū)動(dòng)腳本,執(zhí)行expect,在該腳本里面?zhèn)魅胄枰膮?shù)
思路如下:
三、代碼
3.1、單機(jī)冷備份
(1)mysqldump的shell腳本
backup.sh:
#!/bin/bash
mysql_username=$1
backup_databases=$2
backup_path=$3
mysqldump -u ${mysql_username} -p --databases ${backup_databases} > ${backup_path}
(2)執(zhí)行mysqldump的expect腳本,能幫助我們自動(dòng)輸入mysql代碼
single_cold_backup_service.exp:
#!/usr/bin/expect
set timeout 5
#設(shè)置本機(jī)信息
set mysql_username [lindex $argv 0]
set backup_database [lindex $argv 1]
set backup_path [lindex $argv 2]
#utils路徑
set utils_path /home/hadoop/backup_script/utils
spawn bash ${utils_path}/backup.sh ${mysql_username} ${backup_database} ${backup_path}
expect {
"*assword*" {send "nimabidecao1\r"} #輸入密碼
}
expect eof
(3)驅(qū)動(dòng)腳本,執(zhí)行expect,這里可以傳入需要的參數(shù)
single_cold_backup_service_driver.sh:
#!/bin/bash
#這里的數(shù)據(jù)就可以寫死了
mysql_username=root
backup_databases=school
backup_path=$HOME/backup_data/${backup_databases}.sql
#運(yùn)行expect腳本
expect $HOME/backup_script/single_cold_backup/single_cold_backup_service.exp ${mysql_username} ${backup_databases} ${backup_path}
這里一定要十分注意自己的路徑,強(qiáng)烈建議使用絕對(duì)路徑來執(zhí)行
(4)使用crontab周期執(zhí)行驅(qū)動(dòng)腳本
進(jìn)入crontab編輯:crontab -e
輸入如下內(nèi)容:
0 9 * * 1 bash /home/hadoop/backup_script/single_cold_backup/single_cold_backup_driver.sh
意思為:每周1早上9點(diǎn)執(zhí)行一次備份
若你想確定自己想要的時(shí)間,可以到這個(gè)網(wǎng)址:https://crontab-generator.org/ 去點(diǎn)選自己想要的時(shí)間
3.2、雙機(jī)冷備份
(1)復(fù)制遠(yuǎn)程文件,用于拷貝本地機(jī)的mysql備份文件
scp.sh:
#!/bin/bash
local_backup_path=$1
another_user=$2
another_ip=$3
another_backup_path=$4
scp ${local_backup_path} ${another_user}@${another_ip}:${another_backup_path}
(2)執(zhí)行mysqldump的expect腳本,能幫助我們自動(dòng)輸入mysql代碼
double_cold_backup_service.exp:
#!/usr/bin/expect
set timeout 5
#主機(jī)信息
set mysql_username [lindex $argv 0]
set backup_database [lindex $argv 1]
set backup_path [lindex $argv 2]
#從機(jī)信息
set slave_user [lindex $argv 3]
set slave_ip [lindex $argv 4]
set slave_backup_path [lindex $argv 5]
#utils路徑
set utils_path /home/hadoop/backup_script/utils
spawn bash ${utils_path}/backup.sh ${mysql_username} ${backup_database} ${backup_path}
expect {
"*assword*" {send "nimabidecao1\r"} #輸入密碼
}
spawn bash ${utils_path}/scp.sh ${backup_path} ${slave_user} ${slave_ip} ${slave_backup_path}
expect {
"*assword*" {send "nimabidecao1\r"} #輸入密碼
}
expect eof
(3)驅(qū)動(dòng)腳本,執(zhí)行expect,這里可以傳入需要的參數(shù)
double_cold_backup_service_driver.sh:
(4)使用crontab周期執(zhí)行驅(qū)動(dòng)腳本
0 9 * * 1 bash /home/hadoop/backup_script/double_cold_backup/double_cold_backup_driver.sh
意思是:每周1早上9點(diǎn)執(zhí)行一次備份
到此這篇關(guān)于linux使用mysqldump+expect+crontab實(shí)現(xiàn)mysql周期冷備份思路詳解的文章就介紹到這了,更多相關(guān)mysql周期冷備份內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
來源:腳本之家
鏈接:https://www.jb51.net/article/197861.htm
申請(qǐng)創(chuàng)業(yè)報(bào)道,分享創(chuàng)業(yè)好點(diǎn)子。點(diǎn)擊此處,共同探討創(chuàng)業(yè)新機(jī)遇!