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

错误码: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

您再试一下,保证木问题。

发布了235 篇原创文章 · 获赞 3495 · 访问量 131万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章