本篇內容介紹了“怎么用shell腳本自動修復mysql損壞的表”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
成都創(chuàng)新互聯(lián)從2013年開始,是專業(yè)互聯(lián)網(wǎng)技術服務公司,擁有項目成都網(wǎng)站建設、網(wǎng)站設計網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元鹽邊做網(wǎng)站,已為上家服務,為鹽邊各地企業(yè)和個人服務,聯(lián)系電話:18982081108問題描述:最近查看mysql數(shù)據(jù)庫服務器日志,老發(fā)現(xiàn)有表損壞的錯誤日志,比如:120724 7:30:48 [ERROR] /data/soft/mysql/libexec/mysqld: Table './blog/wp_links' is marked as crashed and last (automatic?) repair failed 手動修復了表后正常了,沒過幾天又發(fā)現(xiàn)出現(xiàn)錯誤。
解決方法:于是就寫了個腳本來自動修復。是根據(jù)一定時間檢測一次日志,如果有這樣的錯誤記錄時,就對出錯的表進行修復來達到自動修復的目的,為了防止日志中錯誤記錄的重復執(zhí)行,每次檢測完日志后特將日志文件清空。
此類腳本的方法其實有很多,只不過這是其中一種而已,有錯誤之處大家提出來,多多指教。
#!/bin/sh DB_USER="root" DB_PASS="123456" DB_NAME="blog" LOG_PATH="/data/db/errlog.log" TIME=`date +%Y-%m-%d" "%H:%M:%S` TABLES=`/usr/bin/awk '/'"repair failed"'/ {print $6}' $LOG_PATH | sort -k1n | uniq -c | awk -F "'" '{print $2}' | awk -F '/' '{print $3}'` if [ -n "$TABLES" ] then for i in `/usr/bin/awk '/'"repair failed"'/ {print $6}' $LOG_PATH | sort -k1n | uniq -c | awk -F "'" '{print $2}' | awk -F '/' '{print $3}'` do /data/soft/mysql/bin/mysql -u$DB_USER -p$DB_PASS $DB_NAME -e "repair TABLE $i" > repair_$i if grep "OK" repair_$i >/dev/null then echo "$TIME repair TABLES $i successful!" else echo "$TIME repair TABLES $i Failed!" fi rm -rf repair_$i done else echo "There is no need to repair the table!" fi :>$LOG_PATH
“怎么用shell腳本自動修復mysql損壞的表”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質量的實用文章!