91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Mysql 5.7.20中mysql innodb系統表損壞應該如何處理

發布時間:2020-06-01 17:20:30 來源:網絡 閱讀:508 作者:三月 欄目:MySQL數據庫

本文主要給大家介紹Mysql 5.7.20中mysql innodb系統表損壞應該如何處理,文章內容都是筆者用心摘選和編輯的,具有一定的針對性,對大家的參考意義還是比較大的,下面跟筆者一起了解下Mysql 5.7.20中mysql innodb系統表損壞應該如何處理吧。

早上上班后,mysql云服務器遇到點小問題,在排查故障過程查看mysql錯誤日志過程中發現有幾個innodb 表無法打開,使用desc查看有關表的表結構提示表不存在,show tables 可以查到一下五個表,以下是具體的報錯信息:

2018-01-12 09:17:41 17235 [Warning] InnoDB: Cannot open table mysql/innodb_index_stats from the internal data dictionary of InnoDB though the .frm file for the table exists. See http://dev.mysql.com/doc/refman/5.6/en/innodb-troubleshooting.html for how you can resolve the problem.

2018-01-12 09:17:41 17235 [Warning] InnoDB: Cannot open table mysql/innodb_table_stats from the internal data dictionary of InnoDB though the .frm file for the table exists. See http://dev.mysql.com/doc/refman/5.6/en/innodb-troubleshooting.html for how you can resolve the problem.

2018-01-12 09:17:41 17235 [Warning] InnoDB: Cannot open table mysql/slave_master_info from the internal data dictionary of InnoDB though the .frm file for the table exists. See http://dev.mysql.com/doc/refman/5.6/en/innodb-troubleshooting.html for how you can resolve the problem.

2018-01-12 09:17:41 17235 [Warning] InnoDB: Cannot open table mysql/slave_relay_log_info from the internal data dictionary of InnoDB though the .frm file for the table exists. See http://dev.mysql.com/doc/refman/5.6/en/innodb-troubleshooting.html for how you can resolve the problem.

2018-01-12 09:17:41 17235 [Warning] InnoDB: Cannot open table mysql/slave_worker_info from the internal data dictionary of InnoDB though the .frm file for the table exists. See http://dev.mysql.com/doc/refman/5.6/en/innodb-troubleshooting.html for how you can resolve the problem.

網上查了下資料,問題的問題產生原因:數據庫打開這幾張表的默認引擎為MyISAM,但是這幾張表在建表時的引擎為INNODB;從而引起mysql報錯

msyql在5.6版本引入了以下五個表

innodb_index_stats,

innodb_tables_stats,

slave_master_info,

slave_relay_log_info,

slave_worker_info

定位了問題原因后,那我們就開始著手準備解決以上存在的問題,解決的思路是,刪除有問題的表和數據文件,使用安裝msyql的官方自帶建表腳本,重新創建有問題的5個表。

操作步驟如下

1,登錄數據庫執行以下操作,sql語句加if 判斷,如果表存在,則刪除

mysql> use mysql;

mysql> drop table if exists innodb_index_stats;

mysql> drop table if exists innodb_table_stats;

mysql> drop table if exists slave_master_info;

mysql> drop table if exists slave_relay_log_info;

mysql> drop table if exists slave_worker_info;

mysql> show tables; 驗證執行結果,以上表是否已刪除

2,停止mysql數據庫服務,并進入到數據庫數據文件所在目錄,刪除上面5個表所對應的idb文件,linux系統環境,我的msyql的basedir目錄是 /usr/local/mysql/

datadir目錄是/data/mysql/var/mysql/

[root@mysql5 ]# systemctl restart stop

[root@sql5 root]# cd /data/mysql/var/mysql/

[root@sql5 mysql]# ls -l *.ibd

-rw-rw---- 1 mysql mysql 98304 3月   7 2017 innodb_index_stats.ibd

-rw-rw---- 1 mysql mysql 98304 3月   7 2017 innodb_table_stats.ibd

-rw-rw---- 1 mysql mysql 98304 3月   7 2017 slave_master_info.ibd

-rw-rw---- 1 mysql mysql 98304 3月   7 2017 slave_relay_log_info.ibd

-rw-rw---- 1 mysql mysql 98304 3月   7 2017 slave_worker_info.ibd

[root@sql5 mysql]#rm -rf *.ibd

3,重啟mysql服務,并重建被刪除的五個表的表結構,建表腳本在mysql軟件的安裝目錄的share目錄下或者mysql的安裝包的script目錄下

[root@mysql5 mysql]# cd /usr/local/mysql/share/

[root@mysql5 share]# ls -l *.sql  //查看所有的建表腳本

-rw-r--r--. 1 root root 932622 9月  13 23:56 fill_help_tables.sql

-rw-r--r--. 1 root root   3999 9月  13 23:48 innodb_memcached_config.sql

-rw-r--r--. 1 root root   1812 11月  7 11:42 install_rewriter.sql

-rw-r--r--. 1 root root   1760 9月  13 23:48 mysql_security_commands.sql

-rw-r--r--. 1 root root 287110 9月  13 23:48 mysql_sys_schema.sql

-rw-r--r--. 1 root root    811 9月  13 23:48 mysql_system_tables_data.sql

-rw-r--r--. 1 root root 154624 9月  13 23:48 mysql_system_tables.sql

-rw-r--r--. 1 root root  10410 9月  13 23:48 mysql_test_data_timezone.sql

-rw-r--r--. 1 root root    834 11月  7 11:42 uninstall_rewriter.sql

[root@mysql5 share]# systemctl restart mysqld

mysql> USE MYSQL;

mysql> source /usr/local/mysql/share/innodb_memcached_config.sql

mysql> show tables; 刪除的5個表已恢復

Mysql 5.7.20中mysql innodb系統表損壞應該如何處理

mysql> DESC innodb_table_stats ;

Mysql 5.7.20中mysql innodb系統表損壞應該如何處理

其余四個表結構的查看過程略,

在查看mysql的錯誤日志,報錯信息沒有了

[root@mysql5 share]# tail /data/mysql/var/mysqld.err

Mysql 5.7.20中mysql innodb系統表損壞應該如何處理

看完以上關于Mysql 5.7.20中mysql innodb系統表損壞應該如何處理,很多讀者朋友肯定多少有一定的了解,如需獲取更多的行業知識信息 ,可以持續關注我們的行業資訊欄目的。 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

若尔盖县| 繁昌县| 临城县| 申扎县| 阿克| 揭东县| 灵宝市| 绍兴县| 手机| 运城市| 大渡口区| 海宁市| 买车| 五河县| 西吉县| 临汾市| 莱州市| 台江县| 佛学| 江西省| 德钦县| 嘉义市| 临城县| 巴林右旗| 邵东县| 泌阳县| 德安县| 郓城县| 黄山市| 民县| 明水县| 灵石县| 石嘴山市| 琼海市| 清流县| 井陉县| 江川县| 桐乡市| 开远市| 临澧县| 绥江县|