ubuntu下MySQL远程连接出现10038问题的解决办法

jerry ubuntu 2015年08月09日 收藏

在ubuntu server下安装了MySQL 5.5数据库,然后在windows下通过Navicat for MySQL连接时,出现 Can't connect to mysql server on xxx.xxx.xxx.xxx(10038) 的问题。

解决方案如下:

1、授权

mysql>grant all privileges on *.*  to  'test'@'%'  identified by 'youpassword'  with grant option;
mysql>flush privileges;

2、修改/etc/mysql/my.conf

找到

bind-address = 127.0.0.1

把这一行改为

bind-address = 0.0.0.0

重启msyql即可。