How to fix abnormal startup of mysql5.7.21

How to fix abnormal startup of mysql5.7.21

A colleague reported that a MySQL instance could not be started due to a power outage. Using innodb_force_recovery=6 also didn't work, so I went to check.

Troubleshooting process:

In the earliest startup information, there is no error message, only a line of [ERROR] Aborting prompt, as follows:

Then my colleague used innodb_force_recovery=6, and the following error message appeared, but it still could not be started successfully. At this time, I decided to find out what was going on.

Filter the startup log, grep ERROR /data/mysql/3306/mysql_run.err

As you can see, all the errors are mainly as follows:

Most of the reasons why MySQL cannot be started are due to system database issues, and this one seems to be no exception.

I tried to log in to the system with --skip-grant-tables, and it worked.

/usr/local/mysql/bin/mysqld_safe --defaults-file=/data/mysql/3306/my.cnf --user=mysql --skip-grant-tables &

Next, check innodb as soon as possible and execute:

innochecksum ibdata1

Then found no output.

Then execute mysqlcheck, and it indeed repairs some errors in the tables under the mysql library. After that, restart the system in the normal way and MySQL returns to normal.

mysqlcheck -u root -p --repair -A

Summarize:

1. MySQL is not that fragile. There is no need to restore it through backup and recovery when it is damaged, which is time-consuming and laborious.

2. During the startup process, you can set --skip-grant-tables or innodb_force_recovery (this parameter needs to modify the cnf file) to let MySQL skip some checks and enable the instance to start successfully;

3. After startup, you can perform data backup or export data, and try to repair the instance;

4. This problem occurs in this instance because of improper setting of real-time saving parameters.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to view MySQL links and kill abnormal links
  • The reason why MySQL manually registers the binlog file and causes master-slave abnormalities
  • MySQL database connection exception summary (worth collecting)
  • Sharing of experience on repairing MySQL innodb exceptions
  • MySQL definition and exception handling details
  • Some basic exception handling tutorials in MySQL stored procedures
  • Analyzing a MySQL abnormal query case
  • A Brief Analysis of MySQL Exception Handling
  • Analyze several common solutions to MySQL exceptions

<<:  Should I abandon JQuery?

>>:  How to view the status of remote server files in Linux

Recommend

Detailed explanation of MySQL 8.0 password expiration policy

Starting from MySQL 8.0.16, you can set a passwor...

Basic reference types of JavaScript advanced programming

Table of contents 1. Date 2. RegExp 3. Original p...

Server stress testing concepts and methods (TPS/concurrency)

Table of contents 1 Indicators in stress testing ...

Detailed explanation of nginx forward proxy and reverse proxy

Table of contents Forward Proxy nginx reverse pro...

Learn more about the most commonly used JavaScript events

Table of contents JavaScript events: Commonly use...

MySQL 8.0 New Features - Introduction to the Use of Management Port

Table of contents Preface Connection Management A...

Mysql 5.6 adds a method to modify username and password

Log in to MySQL first shell> mysql --user=root...

Solution to Vue's inability to watch array changes

Table of contents 1. Vue listener array 2. Situat...

HTML table tag tutorial (20): row background color attribute BGCOLOR

The BGCOLOR attribute can be used to set the back...

A simple method to modify the size of Nginx uploaded files

Original link: https://vien.tech/article/138 Pref...

A brief discussion on order reconstruction: MySQL sharding

Table of contents 1. Objectives 2. Environmental ...

Use CSS's clip-path property to display irregular graphics

clip-path CSS properties use clipping to create t...