远程连接MySQL, 10038问题

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  ‘root‘@‘%‘  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即可


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。