2019独角兽企业重金招聘Python工程师标准>>>
1.注掉bind-address
#bind-address = 127.0.0.1
2.开启远程访问权限
grant all privileges on *.* to root@"xxx.xxx.xxx.xxx" identified by "密码";
或
grant all privileges on *.* to root@"%" identified by "密码";flush privileges;
"%"为匹配所有IP.