解决The user specified as a definer (‘root’@’%’) does not exist 问题

Error querying database. Cause: java.sql.SQLException: The user specified as a definer (‘root’@’%’) does not exist
### Cause: java.sql.SQLException: The user specified as a definer (‘root’@’%’) does not exist

遇到The user specified as a definer (‘root’@’%’) does not exist 问题,原因是没有权限,解决方法如下:
1、添加访问权限

执行SQL:grant all privileges on *.* to root@”%” identified by “.”;

2、更新权限
执行SQL: flush privileges;

sql

问题解决。

发表评论

电子邮件地址不会被公开。 必填项已用*标注

您可以使用这些HTML标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>