Occasionally, MySQL tables can become corrupted, meaning that an error has occurred and the data held within them is unreadable. Attempts to read from a corrupted table will usually lead to the server crashing.
Some common causes of corrupted tables are:
If you suspect that one of your tables has been corrupted, you should make a backup of your data directory before troubleshooting or attempting to fix the table. This will help to minimize the risk of data loss.
First, stop the MySQL service:
- sudo systemctl stop mysql
Note: On some platforms such as Rocky Linux, the MySQL service may be called mysqld
instead.
Then copy all of your data into a new backup directory. On Ubuntu systems, the default data directory is /var/lib/mysql/
:
- cp -r /var/lib/mysql /var/lib/mysql_bkp
After making the backup, you’re ready to begin investigating whether the table is in fact corrupted. If the table uses the MyISAM storage engine, you can check whether it’s corrupted by restarting MySQL and running a CHECK TABLE
statement from the MySQL prompt:
- sudo systemctl start mysql
- CHECK TABLE table_name;
A message will appear in this statement’s output letting you know whether or not it’s corrupted. If the MyISAM table is indeed corrupted, it can usually be repaired by issuing a REPAIR TABLE
statement:
- REPAIR TABLE table_name;
Assuming the repair was successful, you will see a message like this in your output:
Output+--------------------------+--------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+--------------------------+--------+----------+----------+
| database_name.table_name | repair | status | OK |
+--------------------------+--------+----------+----------+
If the table is still corrupted, though, the MySQL documentation suggests a few alternative methods for repairing corrupted tables.
On the other hand, if the corrupted table uses the InnoDB storage engine, then the process for repairing it will be different. InnoDB is the default storage engine in MySQL as of version 8.0, and it features automated corruption checking and repair operations. InnoDB checks for corrupted pages by performing checksums on every page it reads, and if it finds a checksum discrepancy it will automatically stop the MySQL server.
There is rarely a need to repair InnoDB tables, as InnoDB features a crash recovery mechanism that can resolve most issues when the server is restarted. However, if you do encounter a situation where you need to rebuild a corrupted InnoDB table, the MySQL documentation recommends using the “Dump and Reload” method. This involves regaining access to the corrupted table, using the mysqldump
utility to create a logical backup of the table, which will retain the table structure and the data within it, and then reloading the table back into the database.
With that in mind, try restarting the MySQL service to see if doing so will allow you access to the server:
- sudo systemctl restart mysql
If the server remains crashed or otherwise inaccessible, then it may be helpful to enable InnoDB’s force_recovery
option. You can do this by editing the mysqld.cnf
file. On Ubuntu and Debian systems, this file is usually in etc/mysql
. On Red Hat and Rocky systems, this file is usually in /etc/my.cnf.d
.
- sudo nano /etc/mysql/mysql.conf.d/mysqld.cnf
In the [mysqld]
section, add the following line:
. . .
[mysqld]
. . .
innodb_force_recovery=1
Save and close the file, and then try restarting the MySQL service again. If you can successfully access the corrupted table, use the mysqldump
utility to dump your table data to a new file. You can name this file whatever you like, but here we’ll name it out.sql
:
- mysqldump database_name table_name > out.sql
Then drop the table from the database. To avoid having to reopen the MySQL prompt, you can use the following syntax:
- mysql -u user -p --execute="DROP TABLE database_name.table_name"
Following this, restore the table with the dump file you just created:
- mysql -u user -p < out.sql
Note that the InnoDB storage engine is generally more fault-tolerant than the older MyISAM engine. Tables using InnoDB can still be corrupted, but because of its auto-recovery features the risk of table corruption and crashes is markedly lower.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This guide is intended to serve as a troubleshooting resource and starting point as you diagnose your MySQL setup. We’ll go over some of the issues that many MySQL users encounter and provide guidance for troubleshooting specific problems. We will also include links to DigitalOcean tutorials and the official MySQL documentation that may be useful in certain cases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Nice to use command for Ubuntu servers is mysqlcheck, that can automatize the check and repair. You can check and repair all tables for specific database with the command: sudo mysqlcheck --auto-repair --optimize --databases <database name>
or in case you need to do check and repair for all tables in all databases, run: sudo mysqlcheck --auto-repair --optimize --all-databases
more switches are available with: mysqlcheck -?
Let me expand a little bit more on the
mysqlcheck
command.mysqlcheck
is a command-line tool in MySQL used for checking, repairing, optimizing, and analyzing tables in a MySQL database. It is particularly useful when dealing with corrupted or malfunctioning tables. Here’s some detailed information aboutmysqlcheck
:Key Features of
mysqlcheck
Check Tables: The primary function of
mysqlcheck
is to check the integrity of tables in a MySQL database. It scans tables for errors and reports any issues.Example command:
Repair Tables: If the tables are found to be corrupted,
mysqlcheck
can attempt to repair them. This is useful for fixing issues like index corruption or missing data in the table.Example command:
Optimize Tables: You can use
mysqlcheck
to optimize the performance of tables, which can be helpful when the tables have become fragmented due to frequent updates or deletions.Example command:
Analyze Tables:
mysqlcheck
can also analyze tables to update the index statistics, which can improve query performance by helping the optimizer make better decisions.Example command:
How
mysqlcheck
Worksmysqlcheck
operates directly on MyISAM, InnoDB, and other supported table types.Common Options in
mysqlcheck
--all-databases
: Checks, repairs, or optimizes all databases on the server.--auto-repair
: Automatically attempts to repair corrupted tables during the check process.--verbose
: Provides more detailed output, useful for debugging.--fast
: Skips checking tables that have not been modified since the last check.