bestjoe 发表于 2018-10-1 14:12:51

解决MySQL Table '***' is marked as crashed and should be repaired问题

  昨天后端程序在读取数据库信息时候,日志报相关数据表不能读取和写入数据,进入 MySQL数据库发现 Table ‘./wordpress/wp_posts’ is marked as
crashed and should be repaired 错误,因为qqtexas中有数据表被损坏了,所以读取不了数据:
# mysql -u root -p  
Enter password:
  

  
mysql> use qqtexas;
  
Reading table information for completion of table and column names
  
You can turn off this feature to get a quicker startup with -A
  

  
Database changed
  
mysql> select * from wp_posts;
  
ERROR 145 (HY000): Table './wordpress/wp_posts' is marked as crashed and should be repaired
  
mysql> quit
  方法一:
  修复 MySQL 数据库数据表问题可以由 mysqlcheck 来解决,先用 mysqlcheck 查看一下:
# mysqlcheck -u root -p qqtexas  
Enter password:
  然后添加 --auto-repair 参数自动修复,最好修复前备份一下数据库:
# mysqldump -u root -p qqtexas > qqtexas.sql  
Enter password:
  

  
# mysqlcheck -u root -p qqtexas --auto-repair
  
Enter password:
  
wordpress.wp_term_taxonomy
  
error    : Table upgrade required. Please do "REPAIR TABLE `wp_term_taxonomy`" or dump/reload to fix it!
  
wordpress.wp_terms
  
error    : Table upgrade required. Please do "REPAIR TABLE `wp_terms`" or dump/reload to fix it!
  
wordpress.wp_usermeta
  
error    : Table upgrade required. Please do "REPAIR TABLE `wp_usermeta`" or dump/reload to fix it!
  
wordpress.wp_users
  
error    : Table upgrade required. Please do "REPAIR TABLE `wp_users`" or dump/reload to fix it!
  

  
Repairing tables
  
qqtexas.wp_commentmeta                     OK
  
qqtexas.wp_comments                        OK
  
qqtexas.wp_links                           OK
  
qqtexas.wp_options                           OK
  
qqtexas.wp_postmeta                        OK
  为了安全起见,以下两种方法不建议在生产环境中使用
  #mysqlcheck -a -o -r -p //检查优化并修复所有的数据库
  #mysqlcheck -A -o -r 数据库名称 -p //修复指定的数据库
  参数含意:
  -a = Analyse given tables. //分析数据表
  -c = Check table for errors //检查数据库中错误(损坏)的表
  -o = Optimise table //优化数据表
  -r = Can fix almost anything except unique keys that aren’t unique // 修复损坏的数据表
  -m = –medium-check
  方法二:
  使用命令myisamchk修复数据库的MYI文件
# myisamchk -c -r /usr/local/mysql/data/qqtexas/zt_action.MYI  
- recovering (with sort) MyISAM-table '/usr/local/mysql/data/qqtexas/zt_action.MYI'
  
Data records: 21810
  
- Fixing index 1
  
- Fixing index 2
  如果上述操作还不行,就使用 -f 强制执行修复;即
  myisamchk -c -r -f /usr/local/mysql/data/qqtexas/zt_action.MYI
  mysqlcheck说明:
  mysqlcheck客户端可以检查和修复MyISAM表。它还可以优化和分析表。
  mysqlcheck的功能类似myisamchk,但其工作不同。主要差别是当mysqld服务器在运行时必须使用mysqlcheck,而myisamchk应用于服
  务器没有运行时。使用mysqlcheck的好处是不需要停止服务器来检查或修复表。使用myisamchk修复失败是不可逆的。
  Mysqlcheck为用户提供了一种方便的使用SQL语句CHECK TABLE、REPAIR TABLE、ANALYZE TABLE和OPTIMIZE TABLE的方式。它确定
  在要执行的操作中使用使用哪个语句,然后将语句发送到要执行的服务器上。
  参考:http://www.vpsee.com/
  http://www.cnblogs.com/zhoujinyi/archive/2013/05/10/3070667.html
  http://www.javatang.com/archives/category/database


页: [1]
查看完整版本: 解决MySQL Table '***' is marked as crashed and should be repaired问题