MySql8.0 The user specified as a definer ('root'@'%') does not exist

前提:

Mysql 8.0 版本 安装在window系统上。

描述:

最近一个活,运维新安装了mysql8.0在线上,程序部署上去后各种问题。这套程序有使用视图,代码代码中运行提示

The user specified as a definer ('root'@'%') does not exist 错误。

通过Navicat查看,只有默认的一个root用户

系统默认用户

网上查了下相关问题的处理方法,基本都是这句

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

实际运行就会出错

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'identified by "."' at line 1


问题原因:

mysql8.0 以后这句的用法不一样了。

查询资料后,发现是版本的问题,8.0.11版本之后移除了grant 语句添加用户的功能,也就是说grant...只能适用于已存在的账户,不能通过 grant... 来添加账号了。


Using GRANT to modify account properties other than privilege assignments. This includes

authentication, SSL, and resource-limit properties. Instead, establish such properties at account-creation

time with CREATE USER or modify them afterward with ALTER USER.


最后的解决语句:

mysql> create user 'root'@'%' identified by 'USM@2020';

Query OK, 0 rows affected (0.07 sec)

mysql> grant all privileges on *.* to 'root'@'%';

Query OK, 0 rows affected (0.06 sec)

mysql> flush privileges;

Query OK, 0 rows affected (0.03 sec)



问题解决。

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容