在本机登入mysql后,更改"mysql"数据库里的"user"表里的"host"项,从"localhost"改为’%’。
代码如下:
use mysql; update user set Host='%' where Host='root';
最后重启MySql服务,我的电脑 -> 右键管理 -> 打开服务列表 -> 重新启动mysql。
在本机登入mysql后,更改"mysql"数据库里的"user"表里的"host"项,从"localhost"改为’%’。
代码如下:
use mysql; update user set Host='%' where Host='root';
最后重启MySql服务,我的电脑 -> 右键管理 -> 打开服务列表 -> 重新启动mysql。