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

成功解决!

猜你喜欢

转载自www.cnblogs.com/chenlimei/p/9436611.html