现在的位置: 首页shell>正文
shell脚本自动修复mysql损坏的表 [原创]
2012年07月24日 shell 评论数 1 ⁄ 被围观 11,031 次+

最近查看mysql数据库服务器日志,老发现有表损坏的错误日志,比如:120724 7:30:48 [ERROR] /data/soft/mysql/libexec/mysqld: Table './blog/wp_links' is marked as crashed and last (automatic?) repair failed 手动修复了表后正常了,没过几天又发现出现错误。于是就写了个脚本来自动修复。是根据一定时间检测一次日志,如果有这样的错误记录时,就对出错的表进行修复来达到自动修复的目的,为了防止日志中错误记录的重复执行,每次检测完日志后特将日志文件清空。此类脚本的方法其实有很多,只不过这是其中一种而已,也好久没有写脚本了,写的乱七八槽的,还望有错误之处大家提出来,多多指教。

 
  1. #!/bin/sh   
  2.   
  3. DB_USER="root"  
  4. DB_PASS="123456"  
  5. DB_NAME="blog"  
  6. LOG_PATH="/data/db/errlog.log"  
  7. TIME=`date +%Y-%m-%d" "%H:%M:%S`   
  8. TABLES=`/usr/bin/awk '/'"repair failed"'/ {print $6}' $LOG_PATH | sort -k1n | uniq -c | awk -F "'" '{print $2}' | awk -F '/' '{print $3}'`   
  9.   
  10. if [ -n "$TABLES" ]   
  11. then   
  12.     for i in `/usr/bin/awk '/'"repair failed"'/ {print $6}' $LOG_PATH | sort -k1n | uniq -c | awk -F "'" '{print $2}' | awk -F '/' '{print $3}'`   
  13.     do  
  14.         /data/soft/mysql/bin/mysql -u$DB_USER -p$DB_PASS $DB_NAME -e "repair TABLE $i" > repair_$i   
  15.         if grep "OK" repair_$i >/dev/null  
  16.         then   
  17.             echo "$TIME repair TABLES $i successful!"  
  18.         else  
  19.             echo "$TIME repair TABLES $i Failed!"  
  20.         fi   
  21.         rm -rf repair_$i   
  22.     done   
  23. else  
  24.     echo "There is no need to repair the table!"  
  25. fi   
  26. :>$LOG_PATH  

本文地址:http://www.92csz.com/54/1180.html
如非注明则为本站原创文章,欢迎转载。转载请注明转载自:moon's blog
 

目前有 1 条留言 其中:访客:1 条, 博主:0 条

  1. 搜趣软件 : 2012年07月24日17:56:35  -49楼

    自动修复损坏的表很是用啊。