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

    成功解决!

  • 相关阅读:
    sql查询指定表外键约束
    C#6.0新特性
    事务嵌套
    怎么在项目中应用委托
    单线程与多线程
    winform线程下载网页信息
    Linux笔记 FHS目录结构
    Linux笔记 Linux文件系统
    Linux笔记 软件管理
    Linux笔记 vi/vim编辑器
  • 原文地址:https://www.cnblogs.com/chenlimei/p/9436611.html
Copyright © 2011-2022 走看看