前提:
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)
问题解决。