1. 問題ログ
2017-08-31 14:18:05 4122 [Note] InnoDB: Database was not shutdown normally! 2017-08-31 14:18:05 4122 [Note] InnoDB: Starting crash recovery. 2017-08-31 14:18:05 4122 [Note] InnoDB: Reading tablespace information from the .ibd files... 2017-08-31 14:18:05 4122 [ERROR] InnoDB: Attempted to open a previously opened tablespace. Previous tablespace dev/tb_test uses spac e ID: 1 at filepath: ./dev/tb_test.ibd. Cannot open tablespace mysql/innodb_table_stats which uses space ID: 1 at filepath: ./mysql/ innodb_table_stats.ibd 2017-08-31 14:18:05 2ad861898590 InnoDB: Operating system error number 2 in a file operation. InnoDB: The error means the system cannot find the path specified. InnoDB: If you are installing InnoDB, remember that you must create InnoDB: directories yourself, InnoDB does not create them. InnoDB: Error: could not open single-table tablespace file ./mysql/innodb_table_stats.ibd InnoDB: We do not continue the crash recovery, because the table may becomeInnoDB: corrupt if we cannot apply the log records in the InnoDB log to it. InnoDB: To fix the problem and start mysqld: InnoDB: 1) If there is a permission problem in the file and mysqld cannot InnoDB: open the file, you should modify the permissions. InnoDB: 2) If the table is not needed, or you can restore it from a backup, InnoDB: then you can remove the .ibd file, and InnoDB will do a normal InnoDB: crash recovery and ignore that table. InnoDB: 3) If the file system or the disk is broken, and you cannot remove InnoDB: the .ibd file, you can set innodb_force_recovery > 0 in my.cnf InnoDB: and force InnoDB to continue crash recovery here. 150126 14:18:06 mysqld_safe mysqld from pid file /home/mysql/mysql_app/dbdata/liuyazhuang136.pid ended
[mysqld] グループに追加します:
innodb_force_recovery=6
innodb_force_recovery パラメータの説明:
innodb_force_recovery は InnoDB ストレージ全体のリカバリに影響しますエンジン ステータス。デフォルト値は 0 で、回復が必要な場合にすべての回復操作が実行されることを示します。
効果的な回復操作が実行できない場合、mysql が起動できなくなり、エラー ログが記録される可能性があります。
innodb_force_recovery は 1 ~ 6 に設定でき、大きい数値には以前のすべての数値の影響が含まれます。
設定パラメータの値が0より大きい場合、テーブルに対して選択、作成、削除の操作は実行できますが、挿入、更新、削除などの操作は許可されません。
1(SRV_FORCE_IGNORE_CORRUPT): 検出された破損ページを無視します
2(SRV_FORCE_NO_BACKGROUND): メインスレッドが完全なパージ操作を実行する必要がある場合、クラッシュを引き起こします
3(SRV_FORCE_NO_TRX_UNDO): 実行しません。トランザクションのロールバック操作。
4(SRV_FORCE_NO_IBUF_MERGE): 挿入バッファーのマージ操作を実行しません。
5(SRV_FORCE_NO_UNDO_LOG_SCAN): REDO ログをチェックしないと、InnoDB ストレージ エンジンはコミットされていないトランザクションをコミットされたものとして扱います。
6(SRV_FORCE_NO_LOG_REDO): ロールフォワード操作を実行しません。
$mysqldump -h 192.168.209.136 -uroot -p dev > /home/mysql/dev.sql
$mysql -h 192.168.209.136 -uroot -p mysql> drop database dev; ERROR 1051 (42S02): Unknown table 'dev.tb_test'
mysql> drop database dev; Query OK, 0 rows affected (0.00 sec)
mysql> create database dev; Query OK, 1 row affected (0.03 sec)
##innodb_force_recovery=6
以上がMySQLでテーブルデータファイルが破損しデータベースが起動できない問題を解決するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。