明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

檢查并修好mysql數(shù)據(jù)庫(kù)表的具體方法

[摘要]這篇文章介紹了檢查并修復(fù)mysql數(shù)據(jù)庫(kù)表的具體方法,有需要的朋友可以參考一下#!/bin/sh#code by scpman#功能:檢查并修復(fù)mysql數(shù)據(jù)庫(kù)表#將此腳本加到定時(shí)中,腳本執(zhí)行時(shí),等會(huì)讀庫(kù),列出要修復(fù)的所有表,然后計(jì)時(shí),開始修復(fù)#修復(fù)過程中將損壞的表記錄下來,修復(fù)完成后,將損壞的表...
這篇文章介紹了檢查并修復(fù)mysql數(shù)據(jù)庫(kù)表的具體方法,有需要的朋友可以參考一下

#!/bin/sh
#code by scpman
#功能:檢查并修復(fù)mysql數(shù)據(jù)庫(kù)表
#將此腳本加到定時(shí)中,腳本執(zhí)行時(shí),等會(huì)讀庫(kù),列出要修復(fù)的所有表,然后計(jì)時(shí),開始修復(fù)
#修復(fù)過程中將損壞的表記錄下來,修復(fù)完成后,將損壞的表,發(fā)郵件通知。
fix_logs='/tmp/fix.log'
user=''
pass=''
check_fix()
{
dblist=`/usr/bin/find /usr/dlm_db/mysql/ -type d   grep -vE "logs _[1-9] *bak test"  sed -e "s#/usr/dlm_db/mysql/##g"`
echo start `date`>$fix_logs
for dbname in $dblist
do
echo $dbname
for tb_name in `/usr/bin/find /usr/dlm_db/mysql/$dbname -type f   awk -F'/' '{print $NF}'   awk -F'.' '{print $1}'   sort -
u`
do
mysql -u$user -p$pass $dbname<<fff>>$fix_logs
check table $tb_name;
repair table $tb_name;
FFF
done
done
echo `date` done>>$fix_logs
}
send_logs()
{
msgip=10.0.7.44
IP=`cat /etc/rc.conf   grep -E "ifconfig_[em1 bce1]"   awk '{print "IP:"$2}'  sed -n 1p `
fix_info=`grep -rE "Error start done" $fix_logs`
/usr/bin/logger -p local1.info -h $msgip "the services: $IP mysql_table_fix_info:$fix_info"
}
check_fix
send_logs

以上就是檢查并修復(fù)mysql數(shù)據(jù)庫(kù)表的具體方法的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!


學(xué)習(xí)教程快速掌握從入門到精通的SQL知識(shí)。