Solution to the problem of flash back after entering the password in MySQL database

Solution to the problem of flash back after entering the password in MySQL database

MySQL database crashes after entering password and solutions

1 Case Description

I have been using MySQL database to demonstrate basic functions recently, but a problem suddenly occurred in the past two days: after starting the MySQL server and entering the password, a crash occurred.

Afterwards, I searched on the Internet and found that this problem is very common. Most of the time, the reason may be that we accidentally shut down the MySQL service when using security software. In addition, if the MySQL service has been started but still crashes, there may be a problem with the MySQL configuration.

2 Solutions

When the above problem occurs, we must first check whether the MySQL service is started. If the MySQL service is not started, then in most cases, when we manually start the MySQL service, the above problem can be solved; if the MySQL service has been started, but there is still a flash back, we need to modify the relevant configuration!

Next, follow the steps below (click in sequence) to enter the service management page:

My computer;

manage;

Services and Applications;

Serve.

2

As shown in the figure above, here we can check the status of the MySQL service!

Case 1: MySQL service is not started

Ahem, this is easy. Just right-click or click the button indicated by the red arrow in the figure below to start the MySQL service.

3

After clicking Start, let's restart the MySQL server, enter the password, and test it:

4

As shown in the figure above, it is clear that our problem has been solved.

Case 2: MySQL service is already started

If the MySQL service crashes when it is started, there may be a problem with the MySQL configuration. Furthermore, there may be a problem with the my.ini file in C:\ProgramFiles\MySQL\MySQL Server XX (in the installation path). For this question:

Method 1: First enter cmd and switch to the MySQL installation directory, then switch to the bin directory, and enter the mysqld-nt--skip-grant-tables command. Then, do not close this cmd window yet, open another window to log in to MySQL or directly click on MySQL CommandLine Client and enter the correct password.

Method 2: Find and run win+R. In this DOS window, cd to the bin directory of MySQL Server XX, then enter the mysql -u root -p command and then enter the password.

Method 3: If the message "mysql: unknownvariable 'character-set-server=gbk'" appears when you log in, the solution is to modify the my.ini file in the MySQL installation directory, comment out or delete the default-character-set=gbk, and restart the MySQL service in the service.

At this point, I believe that if we encounter the problem of MySQL database crashing after entering the password again, we can easily solve it!

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:
  • Ubuntu 18.04 does not prompt for password when installing MySQL and how to solve it
  • Solve the problem of mysql flashing back after entering password
  • Introduction to some operations of MySQL secure password input
  • 2 ways to connect to the database directly without entering a username and password
  • MySQL controls the number of attempts to enter incorrect passwords

<<:  How to quickly deploy an Elasticsearch cluster using docker

>>:  Vue implements the countdown component for second kills

Recommend

Detailed process of configuring NIS in Centos7

Table of contents principle Network environment p...

CentOS 7 cannot access the Internet after modifying the network card

Ping www.baidu.com unknown domain name Modify the...

Detailed explanation of the use of React list bar and shopping cart components

This article example shares the specific code of ...

Analysis of Linux Zabbix custom monitoring and alarm implementation process

Target Display one of the data in the iostat comm...

Vue uses WebSocket to simulate the chat function

The effect shows that two browsers simulate each ...

Sharing tips on using scroll bars in HTML

Today, when we were learning about the Niu Nan new...

Implementation code for using CSS text-emphasis to emphasize text

1. Introduction In the past, if you wanted to emp...

In-depth analysis of the diff algorithm in React

Understanding of diff algorithm in React diff alg...

Continuous delivery using Jenkins and Docker under Docker

1. What is Continuous Delivery The software produ...