1. 程式人生 > >mysql客戶端連線報錯10038

mysql客戶端連線報錯10038

在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即可