当前位置:首页 > Mysql教程 > 列表

mysql提示The user specified as a definer ('root'@'%') does not exist

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-18 14:08:32 浏览: 评论:0 

如果你的mysql提示The user specified as a definer ('root'@'%') does not exist错误这个肯定是授权问题了,我们只要简单的处理一下即可。

重装了mysql,项目运行遇到该异常,记录一下解决的办法:

1、登录mysql

2、执行赋权限操作,然后刷新权限.

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

mysql >flush privileges;

其实这种问题相对来说见得比较少了,因为mysql安装之后root权限就比较高了.

Tags: specified definer does

分享到: