A practical record of an accident caused by MySQL startup

A practical record of an accident caused by MySQL startup

MySQL` starts with a port being listened to, but the service is not fully started.

background

When MySQL starts, it will initialize the database for the first time. After MySQL is fully started, it will initialize the database for the second time.

The first time you initialize the database, use --skip-networking (this option disables MySQL's TCP/IP connection method) to start MySQL for initialization.

After initialization is complete, restart MySQL with the --skip-networking option turned off.

The second time you initialize the database, you will set the root password.

How to determine whether MySQL has been fully started

Try to actively connect to MySQL. A successful connection indicates that the service has been fully started.

mysql -hlocalhost -P3306 -uroot

ACCIDENT

Since the above judgment method uses socket to connect to the database, but the first time only prohibits MySQL's TCP/IP connection method,

Therefore, the second database initialization may have been performed before the first database initialization was completed.

The second database initialization sets the root password earlier than the first database initialization, which causes the first initialization to fail because it cannot connect to the database.

Finally, the TCP/IP connection method was not enabled and the application could not connect to the database.

First modification

Use -h127.0.0.1 to connect to the database

mysql -h127.0.01 -P3306 -uroot

However, since the host of the root user is set to localhost, 127.0.0.1 is not allowed to connect, and the first modification fails.

Second revision

wait-for-it.sh 127.0.0.1:3306 --timeout=300

mysql -hlocalhost -P3306 -uroot

wait-for-it.sh is used to detect whether 127.0.0.1:3306 is in the listening state. If it is, it means that the first database initialization is completed.

Then use localhost to try to connect to the database.

Original link: k8scat.com/posts/wait-…

Summarize

This is the end of this article about accidents caused by MySQL startup. For more information about accidents caused by MySQL startup, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solution to the mysql service not starting
  • Summary of several common problems when MySQL cannot be started
  • Summary of solutions for the problem that MySQL 5 cannot be started after installation (cannot start service)
  • Quick solution to MySQL service startup failure under CentOS 7
  • Solution to MySQL startup error 1053
  • Windows cannot start MySQL service and reports error 1067 solution
  • How to solve the problem of MySQL not starting with error 1067
  • Common commands for mysql authorization, startup, and service startup

<<:  Sitemesh tutorial - page decoration technology principles and applications

>>:  HTML uses marquee to achieve text scrolling left and right

Recommend

Class in front-end JavaScript

Table of contents 1. Class 1.1 constructor() 1.2 ...

React tips teach you how to get rid of hooks dependency troubles

A very common scenario in react projects: const [...

Detailed explanation of MySQL delayed replication library method

Simply put, delayed replication is to set a fixed...

MySQL functional index optimization solution

When using MySQL, many developers often perform f...

Sample code for displaying a scroll bar after the HTML page is zoomed out

Here is a record of how to make a scroll bar appe...

Detailed explanation of the solution to Tomcat's 404 error

The 404 problem occurs in the Tomcat test. The pr...

Differences between MySQL MyISAM and InnoDB

the difference: 1. InnoDB supports transactions, ...

Introduction to MySQL Connection Control Plugin

Table of contents 1. Introduction to the connecti...

Vue simulates the shopping cart settlement function

This article example shares the specific code of ...

Use vue2+elementui for hover prompts

Vue2+elementui's hover prompts are divided in...

Practice of Vue global custom instruction Modal drag

Table of contents background Implementation ideas...

How to click on the a tag to pop up the input file upload dialog box

html Copy code The code is as follows: <SPAN cl...

How to install and use Cockpit on CentOS 8/RHEL 8

Cockpit is a web-based server management tool ava...

Tic-Tac-toe game implemented in pure CSS3

Operation effect: html <div class="tic-ta...