Problem: The MySQL database crashed unexpectedly and the database could not be started. Error log: Startup error: service mysqld restart ERROR! MySQL server PID file could not be found! Database error log: 200719 22:07:43 InnoDB: Database was not shut down normally! Tip: When the table space information is read at database startup, the data file of the ob_users.ibd table in the ob-wp library already exists in the table space. expand: The storage engine is myisam. You will see three types of files in the database directory: .frm, .myi, and .myd Source: https://www.cnblogs.com/liucx/ Method 1: According to the prompt information, the InnoDB table is determined to be damaged, so try to back up the table structure and table data files in the dev_nss library directory Method 2: 1. Consult the official website documentation, add configuration to the MySQL configuration file /etc/my.cnf, and start successfully 2. Back up the database 3. Delete the database 4. Remove the parameter innodb_force_recovery 5. Import data If it prompts that the table already exists, it is because after removing the innodb_force_recovery parameter, the database will roll back and generate the corresponding ibd file, so you need to delete the file and re-import it. Note: innodb_force_recovery parameter explanation: Crash recovery mode, usually only changed in serious troubleshooting situations. Possible values are from 0 to 6. Set this variable to a value greater than 0 only in an emergency, so that you can start InnoDB and dump your tables. As a safety measure, InnoDB prevents insert, update, or delete operations when innodb_force_recovery is greater than 0. innodb_force_recovery is 0 by default (normal startup without forced recovery). Permitted non-zero values for innodb_force_recovery are 1 through 6. Larger values include the functionality of smaller values. For example, value 3 contains all the features of values 1 and 2. For safety reasons, InnoDB prevents INSERT, UPDATE, or DELETE operations when innodb_force_recovery is greater than 0. As of MySQL 5.6.15, setting innodb_force_recovery to 4 or more places InnoDB in read-only mode. Source: https://www.cnblogs.com/liucx/ Refer to the official website: Hope this helps This is the end of this article about how to solve the problem of MySQL database crashing unexpectedly causing table data files to be damaged and unable to start. For more related solutions to the problem of MySQL database crashing unexpectedly causing table data files to be damaged and unable to start, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: React native ScrollView pull down refresh effect
>>: React realizes secondary linkage (left and right linkage)
1. Data Deduplication In daily work, there may be...
Triggers can cause other SQL code to run before o...
1. Overview This article systematically explains ...
Preface Recently, I encountered a requirement at ...
This article is mainly for those who do not under...
Below are some common parameters of /etc/my.cnf o...
Recently, I participated in the development of th...
KDE Abbreviation for Kool Desktop Environment. A ...
In MySQL, how do you view the permissions a user ...
Copy code The code is as follows: <!--[if IE]&...
Linux version: CentOS 7 [root@azfdbdfsdf230lqdg1b...
1. Delete node Execute kubectl delete node node01...
This article mainly introduces the deployment of ...
Today I designed a dynamic window style for publis...
When the amount of data in MySQL is large, limit ...