How to solve mysql error 10061

How to solve mysql error 10061

This article shares with you the solution to the problem "Can't connect to MySQL server on 'localhost' (10061)" for your reference. The specific content is as follows

Online search method 1:

Today I copied the MySQL database to another machine, but it failed to connect. It reported the error "Can't connect to MySQL server on 'localhost' (10061)". I searched online and found a very good article. Both methods can solve this problem.
1. Delete my.ini (under C:\windows\), re-run winmysqladmin, and after being asked to enter the username and password, the problem is solved!
2. Check if localhost in the hosts file points to 127.0.0.1

If the mysql service is not started, run net start mysql.
Some relevant commands:
mysqld-nt --install #Start MySQL
mysql #Run MySQL
mysql -h ipAddress -u username -p

Online search method 2:

Solution to mysql error 10061

If "ERROR 2003: Can't connect to MySQL server on 'localhost' (10061)" appears,

This means your MySQL has not been started. Solution:

first step

Delete my.ini under c:\windowns

Step 2

Enter the BIN directory under DOS

C:\Program Files\MySQL\MySQL Server 5.4\bin

Step 3

Enter mysqld -nt -remove in DOS to delete the service

Then enter mysqld -nt -install to install the service

Step 4

Type net start mysql

mysql started successfully

--------------------------------------------------------------------------------------------------------

The above two methods did not solve my problem.

However, the above two methods have actually touched upon the point. That is, my MySQL has not been started. So how do you start it?

Enter the BIN directory under DOS

C:\Program Files\MySQL\MySQL Server 5.4\bin

Then, just enter net start mysql

Then just press enter.

The screenshots are as follows:

Or directly

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:
  • Steps for installing MySQL 8.0.16 on Windows and solutions to errors
  • Solution to MySQL error code 1862 your password has expired
  • MySql inserts data successfully but reports [Err] 1055 error solution
  • How to solve the abnormal error ERROR: 2002 in mysql
  • Solution to 1045 error when navicat connects to mysql
  • How to solve the error 1093-You can't specify target table for update in FROM clause in MySQL
  • Solution to the MySQL error "Every derived table must have its own alias"

<<:  Detailed explanation of how to build an Ftp server on Ubuntu (success guaranteed)

>>:  How to set up virtual directories and configure virtual paths in Tomcat 7.0

Recommend

Negative margin function introduction and usage summary

As early as in the CSS2 recommendations in 1998, t...

In-depth study of vue2.x--Explanation of the h function

Table of contents Solution, Summarize: vue projec...

Usage of mysql timestamp

Preface: Timestamp fields are often used in MySQL...

Selection and thinking of MySQL data backup method

Table of contents 1. rsync, cp copy files 2. sele...

Mysql SQL statement operation to add or modify primary key

Add table fields alter table table1 add transacto...

Vue globally introduces scss (mixin)

Table of contents 1. mixin.scss 2. Single file us...

Detailed tutorial on deploying Django project under CentOS

Basic Environment Pagoda installation service [Py...

Detailed tutorial on using the tomcat8-maven-plugin plugin in Maven

I searched a lot of articles online but didn'...

Linux Network System Introduction

Table of contents Network Information Modify the ...

MySQL stored procedure method example of returning multiple values

This article uses an example to describe how to r...

Vue implements the frame rate playback of the carousel

This article example shares the specific code of ...

Four completely different experiences in Apple Watch interaction design revealed

Today is still a case of Watch app design. I love...

Basic application methods of javascript embedded and external links

Table of contents Basic application of javascript...