且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

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

更新时间:2022-12-02 14:41:47

如果您使用的是 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`.