溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

centos每天自動(dòng)備份mysql數(shù)據(jù)庫的腳本分享

發(fā)布時(shí)間:2021-09-15 11:33:31 來源:億速云 閱讀:169 作者:chen 欄目:數(shù)據(jù)庫

本篇內(nèi)容主要講解“centos每天自動(dòng)備份mysql數(shù)據(jù)庫的腳本分享”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“centos每天自動(dòng)備份mysql數(shù)據(jù)庫的腳本分享”吧!

腳本如下
#!/bin/bash 
#功能說明:本功能用于備份 
#編寫日期:2010/12/06 
 
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin 
export PATH 
#數(shù)據(jù)庫用戶名 
dbuser='root'
#數(shù)據(jù)庫密碼 
 
dbpasswd='123456'
#數(shù)據(jù)庫名,可以定義多個(gè)數(shù)據(jù)庫,中間以空格隔開,如:test test1 test2 
dbname='test1 test2'
#備份時(shí)間 
backtime=`date +%Y%m%d%H%M%S` 
#日志備份路徑 
logpath='/second/backup'
#數(shù)據(jù)備份路徑 
datapath='/second/backup'
#日志記錄頭部 
echo ‘"備份時(shí)間為${backtime},備份數(shù)據(jù)庫表 ${dbname} 開始" >> ${logpath}/log.log 
#正式備份數(shù)據(jù)庫 
for table in $dbname; do 
source=`mysqldump -u ${dbuser} -p${dbpasswd} ${table}> ${logpath}/${backtime}.sql` 2>> ${logpath}/mysqllog.log; 
#備份成功以下操作 
if [ "$?" == 0 ];then 
cd $datapath 
#為節(jié)約硬盤空間,將數(shù)據(jù)庫壓縮 
tar jcf ${table}${backtime}.tar.bz2 ${backtime}.sql > /dev/null 
#刪除原始文件,只留壓縮后文件 
rm -f ${datapath}/${backtime}.sql 
 
echo "數(shù)據(jù)庫表 ${dbname} 備份成功!!" >> ${logpath}/mysqllog.log 
else 
#備份失敗則進(jìn)行以下操作 
echo "數(shù)據(jù)庫表 ${dbname} 備份失敗!!" >> ${logpath}/mysqllog.log 
fi 
 
done 
定時(shí)執(zhí)行腳本:
方式:
1、
執(zhí)行 crontab -e
輸入以下內(nèi)容:
______________________________________________________________________________
00 00 * * * /bin/bash yourpath/mysqlbak.sh
2、
打開自動(dòng)執(zhí)行文件
vi /etc/crontab
在etc中加入如下內(nèi)容,讓其自動(dòng)執(zhí)行任務(wù)。
00 00 * * * root /mysqlbak.sh
以上兩個(gè) 00 00 *** 為每天的凌晨自動(dòng)執(zhí)行腳本
分 時(shí) 日 月 周 命令

M: 分鐘(0-59)。每分鐘用*或者 */1表示

H:小時(shí)(0-23)。(0表示0點(diǎn))

D:天(1-31)。

m: 月(1-12)。

d: 一星期內(nèi)的天(0~6,0為星期天)。
3、
Redhat方法:
Redhat的crontab采用按時(shí)間調(diào)用4個(gè)目錄(/etc/cron.hourly:每小時(shí);/etc/cron.daily:每
天;/etc/cron.weekly:每周;/etc/cron.monthly:每月)中腳本出來運(yùn)行的方式。
Redhat中只需要將剛才編輯的腳本復(fù)制到相應(yīng)的目錄即可。
cp /autobackupmysql.sh etc/cron.daily
重啟etc
/etc/rc.d/init.d/crond restart

到此,相信大家對(duì)“centos每天自動(dòng)備份mysql數(shù)據(jù)庫的腳本分享”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI