navicat访问MySQL报错如下:
1130 is not allowed to connect to this MySql server
解决办法:命令赋予用户权限
grant all privileges on *.* to root@"%" identified by "123456";
刷新权限
flush privileges;
navicat访问MySQL报错如下:
1130 is not allowed to connect to this MySql server
解决办法:命令赋予用户权限
grant all privileges on *.* to root@"%" identified by "123456";
刷新权限
flush privileges;