错误 2003 (HY000):无法连接到“127.0.0.1"上的 MySQL 服务器 (111)

ERROR 2003 (HY000): Can#39;t connect to MySQL server on #39;127.0.0.1#39; (111)(错误 2003 (HY000):无法连接到“127.0.0.1上的 MySQL 服务器 (111))
本文介绍了错误 2003 (HY000):无法连接到“127.0.0.1"上的 MySQL 服务器 (111)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我使用以下命令:

mysql -u root -h 127.0.0.1 -p

错误信息是:

ERROR 2003 (HY000): Can't connect to MySQL server on '127.0.0.1' (111)

谁能帮我解决这个问题?

Who can help me to fix it?

推荐答案

如果您使用的是 ubuntu,则必须使用以下步骤来避免此错误(如果没有启用复制):

If you are using ubuntu, you have to use the following steps to avoid this error(if there is no replication enabled):

  1. 运行命令vim/etc/mysql/my.cnf
  2. 注释 bind-address = 127.0.0.1 使用 # 符号
  3. 重启你的 mysql 服务器一次.

更新

在第一步中,如果在my.cnf文件中找不到bind-address,请在/etc/mysql/mysql.conf中查找.d/mysqld.cnf 文件.

In Step 1, if you cannot find bind-address in the my.cnf file, look for it in /etc/mysql/mysql.conf.d/mysqld.cnf file.

在启用 MySQL 复制的情况下更新

尝试在IP上连接MySQL服务器,MySQL服务器绑定在'my.cnf而不是localhost或127.0.0.1`中.

Try to connect MySQL server on IP for which MySQL server is bind in 'my.cnfinstead oflocalhost or 127.0.0.1`.

这篇关于错误 2003 (HY000):无法连接到“127.0.0.1"上的 MySQL 服务器 (111)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Can#39;t Create Entity Data Model - using MySql and EF6(无法创建实体数据模型 - 使用 MySql 和 EF6)
MySQL select with CONCAT condition(MySQL选择与CONCAT条件)
Capitalize first letter of each word, in existing table(将现有表格中每个单词的首字母大写)
How to retrieve SQL result column value using column name in Python?(如何在 Python 中使用列名检索 SQL 结果列值?)
Update row with data from another row in the same table(使用同一表中另一行的数据更新行)
Exporting results of a Mysql query to excel?(将 Mysql 查询的结果导出到 excel?)