1. MySQL5.6以上版本
2. 修改 /etc/my.cnf 文件
# vim /etc/my.cnf
[client]
host=localhost
user=你的數(shù)據(jù)庫(kù)用戶
password='你的數(shù)據(jù)庫(kù)密碼'
3. 編寫(xiě)數(shù)據(jù)庫(kù)腳本 mysql-backup.sh
# vim mysql-backup.sh
#!/bin/bash
backupDir=數(shù)據(jù)庫(kù)備份目錄
backupTime=`date +%Y%m%d%H%M%S`
mysqldump 你的數(shù)據(jù)庫(kù) | gzip > $backupDir/你的數(shù)據(jù)庫(kù)-$backupTime.sql.gz
echo "1."$backupTime "備份完成" >> #backupDir/mysql.log
cd $backupDir
rm -rf `find . -name '*.sql.gz' -mtime +30` >> #backupDir/mysql.log 2>1 #刪除30天前備份文件
echo "2.刪除30天前的備份文件完成" >> #backupDir/mysql.log
4. 為腳本添加執(zhí)行權(quán)限
# chmod +x mysql-backup.sh
5. 測(cè)試執(zhí)行
./mysql-backup.sh
6. 添加定時(shí)計(jì)劃
# crontab -e (和vim編輯器一樣)
# crontab配置文件格式:分 時(shí) 日 月 周 命令
# 在最后一行中加入:
0 3 * * * /usr/sbin/mysql-bakup.sh #表示每天3點(diǎn)00分執(zhí)行備份
0 */6 * * * /usr/sbin/mysql-bakup.sh #表示每6個(gè)小時(shí)執(zhí)行備份
7. 重啟crontab
# /etc/rc.d/init.d/crond restart
8. 恢復(fù)數(shù)據(jù)庫(kù)備份文件
#SQL備份文件恢復(fù):
mysql -u root -p 你的數(shù)據(jù)庫(kù) 備份文件名.sql
#壓縮文件恢復(fù):
gzip 備份文件名.sql.gz | mysql -u root -p 你的數(shù)據(jù)庫(kù)
9. 附:如果出現(xiàn)問(wèn)題:"mysqldump: command not found",解決如下:
ln -fs /usr/local/mysql/bin/mysqldump /usr/bin
ln -fs /usr/local/mysql/bin/mysql /usr/bin
PS:下面看下linux中備份mysql數(shù)據(jù)庫(kù)
在linux中備份mysql數(shù)據(jù)庫(kù),命令是:
[root]# mysqldump -u 用戶名 -p 密碼 --all-databases > /home/mysql/bak.sql
如果報(bào)錯(cuò)就添加如下:
mysqldump -h localhost -u root -p psword root@172.16.123.88 --all-tablespaces --master-data=2 --events --routines --all-databases > /home/mysql/mydatas.sql
簡(jiǎn)單版的:(先保存在本地)
mysqldump -u root -p databaseName > data.sql
查詢mysql數(shù)據(jù)庫(kù):whereis mysql
進(jìn)入數(shù)據(jù)庫(kù)(當(dāng)前數(shù)據(jù)庫(kù)文件本地):mysql -h localhost -u 數(shù)據(jù)庫(kù)賬號(hào) -p 密碼
查看數(shù)據(jù)庫(kù):show databases;
查看文件大?。?code>ls -lht
總結(jié)
以上所述是小編給大家介紹的Linux實(shí)現(xiàn)定時(shí)備份MySQL數(shù)據(jù)庫(kù)并刪除30天前的備份文件,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
如果你覺(jué)得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!
您可能感興趣的文章:- shell腳本定時(shí)備份MySQL數(shù)據(jù)庫(kù)數(shù)據(jù)并保留指定時(shí)間
- Mysql數(shù)據(jù)庫(kù)定時(shí)備份腳本分享
- MySQL定時(shí)備份數(shù)據(jù)庫(kù)操作示例
- MySQL數(shù)據(jù)庫(kù)定時(shí)備份的實(shí)現(xiàn)方法
- linux實(shí)現(xiàn)定時(shí)備份mysql數(shù)據(jù)庫(kù)的簡(jiǎn)單方法
- mysql自動(dòng)定時(shí)備份數(shù)據(jù)庫(kù)的最佳方法(windows服務(wù)器)
- MySQL 數(shù)據(jù)庫(kù)定時(shí)備份的幾種方式(全面)