Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the [ERROR] InnoDB:. / ibdata1 can't be opened in read-write mode problem of MySQL

2025-02-25 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article is mainly about "how to solve MySQL's [ERROR] InnoDB:. / ibdata1 can't be opened in read-write mode problem". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Now let the editor take you to learn how to solve the [ERROR] InnoDB:. / ibdata1 can't be opened in read-write mode problem of MySQL.

Question:

[root@localhost mysql] # / scripts/mysql_install_db-- user=mysql-- basedir=/u01/app/mysql-- datadir=/u01/app/mysql/data

Installing MySQL system tables...2016-01-25 15:34:36 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use-explicit_defaults_for_timestamp server option (see documentation for more details).

2016-01-25 15:34:36 0 [Note] / u01/app/mysql/bin/mysqld (mysqld 5.6.28) starting as process 10302.

2016-01-25 15:34:36 10302 [Note] InnoDB: Using atomics to ref count buffer pool pages

2016-01-25 15:34:36 10302 [Note] InnoDB: The InnoDB memory heap is disabled

2016-01-25 15:34:36 10302 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins

2016-01-25 15:34:36 10302 [Note] InnoDB: Memory barrier is not used

2016-01-25 15:34:36 10302 [Note] InnoDB: Compressed tables use zlib 1.2.3

2016-01-25 15:34:36 10302 [Note] InnoDB: Using CPU crc32 instructions

2016-01-25 15:34:36 10302 [Note] InnoDB: Initializing buffer pool, size = 128.0m

2016-01-25 15:34:36 10302 [Note] InnoDB: Completed initialization of buffer pool

2016-01-25 15:34:36 10302 [ERROR] InnoDB:. / ibdata1 can't be opened in read-write mode

2016-01-25 15:34:36 10302 [ERROR] InnoDB: The system tablespace must be writable!

2016-01-25 15:34:36 10302 [ERROR] Plugin 'InnoDB' init function returned error.

2016-01-25 15:34:36 10302 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.

2016-01-25 15:34:36 10302 [ERROR] Unknown/unsupported storage engine: InnoDB

2016-01-25 15:34:36 10302 [ERROR] Aborting

2016-01-25 15:34:36 10302 [Note] Binlog end

2016-01-25 15:34:36 10302 [Note] / u01/app/mysql/bin/mysqld: Shutdown complete

Reason: it was executed once before. / scripts/mysql_install_db-- user=mysql-- basedir=/u01/app/mysql-- datadir=/u01/app/mysql/data reported an error. After changing the parameters, execute it again and report this error again.

Resolve:

[root@localhost mysql] # pwd

/ u01/app/mysql

[root@localhost mysql] # cd data

[root@localhost data] # ls

Ibdata1 ib_logfile0 ib_logfile1 mysql test

[root@localhost data] # rm-rf *

[root@localhost data] # cd..

[root@localhost mysql] # / scripts/mysql_install_db-- user=mysql-- basedir=/u01/app/mysql-- datadir=/u01/app/mysql/data

The log shows success!

At this point, I believe you have a deeper understanding of "how to solve the [ERROR] InnoDB:. / ibdata1 can't be opened in read-write mode problem of MySQL". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report