Home > Database > Mysql Tutorial > body text

What is the 10061 error of mysql?

WBOY
Release: 2022-08-31 16:37:15
Original
27517 people have browsed it

In mysql, the 10061 error refers to the failure to connect to the local service; the reason for this error is that the configuration file or localhost only wants something other than the local IP during the connection, which leads to the failure to connect to the local service. In this case, you can modify the value of "localhost" to the specified value to solve this error.

What is the 10061 error of mysql?

The operating environment of this tutorial: windows10 system, mysql8.0.22 version, Dell G3 computer.

What is the 10061 error of mysql?

MySQL10061 error code

Translating the error code prompt of mysql10061 means that the connection to the local service failed, that is to say When connecting, the configuration file or localhost only wants something other than the local ip 12.7.0.01, so the connection to the local service fails.

MySQL10061 error solution

Find its configuration file my.ini in the installation directory of the mysql database and delete it, then win r shortcut key to open and run window. Enter winmysqladmin in the run window and execute it. You will be prompted to enter your user name and password. You can use the default administrator account here.

After logging in, execute the command net start mysql to start the service of the mysql database. After the service is started, you need to check which localhost the mysql database points to. The command is as follows:

select Host,User from user
Copy after login

If it is not 127.0.0.1, find the hosts file in the System32/etc folder under the C drive of the computer and open it. After opening, change the value of localhost to 127.0.0.1. After the modification is completed, save the file and return to the command line. Use the command to refresh a local address and then restart. The command is as follows

flush privileges
systemctl stop mysqld
systemctl start mysqld
Copy after login

Recommended learning: mysql video tutorial

The above is the detailed content of What is the 10061 error of mysql?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!