1. 程式人生 > >Ubuntu遠端連線MySQL, 10038問題

Ubuntu遠端連線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即可