浏览文章

文章信息

MySQL ('root'@'%') does not exist的问题 6755

数据库用户环境不对,一个数据库有授权给root@"%",但是你要导入的数据库没有授权给root@"%"


解决:

mysql >grant all privileges on *.* to root@"%" identified by "Passwd" ;

mysql >flush privileges;

原创