zoukankan      html  css  js  c++  java
  • 错误码:2003 不能连接到 MySQL 服务器在 (10061)

    今天在ubuntu上安装了mysql服务器,在windows上用客户端软件连接mysql服务器时,出现错误:

    错误码:2003 不能连接到 MySQL 服务器在 (10061) 

    折腾来折腾去没搞好,防火墙也关了,3306端口也添加到了出站规则,但就是连不上,后来无意间看到一篇帖子,得到了提示。打开/etc/mysql/my.cnf看到以下内容:

    #
    # Instead of skip-networking the default is now to listen only on
    # localhost which is more compatible and is not less secure.
    bind-address        = 127.0.0.1
    #
    

    也就是说mysql服务器默认绑定了127.0.0.1端口,这样其他远程客户端当然无权访问啦,我们这里把bind-address = 127.0.0.1注释掉,结果如下所示:

    #
    # Instead of skip-networking the default is now to listen only on
    # localhost which is more compatible and is not less secure.
    # bind-address      = 127.0.0.1
    #
    

    然后重启mysql服务:

    sudo restart mysql

    成功解决!

  • 相关阅读:
    python——(os, shutil)
    python-(subprocess, commands)
    PHP设计模式二:单例模式
    PHP设计模式一:工厂方法设计模式
    PHP垃圾回收机制
    PHP异常处理机制
    超文本传送协议HTTP
    IP地址
    Linux系统网络基本配置
    Linux系统LVM基本使用
  • 原文地址:https://www.cnblogs.com/chenlimei/p/9436611.html
Copyright © 2011-2022 走看看