【排错】工具远程连接mysql,错误代码10061

错误如下

    Can't connect to mysql on '192.168.1.124'  (10061)


解决:

    优先检查授权:

        grant all privileges on *.* to 'root'@'%' identified by 'password' 

        flush privileges;

        --%表示所有的ip可能

    检查mysql配置文件(my.ini或者my.cnf):

        bind-address           = 127.0.0.1

        改成 bind-address     = 0.0.0.0

        

        

你可能感兴趣的:(mysql,远程连接,10061)