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

2023-01-10 12:55:55
创建本地mysql,运行项目时出现
The user specified as a definer ('root'@'%') does not exist。
解决方法如下
打开运行-->输入CMD;
输入
mysql -u root -p
然后输入密码 进入mysql
执行如下操作即可

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


  • 作者:风晴03
  • 原文链接:https://blog.csdn.net/d276031034/article/details/79303913
    更新时间:2023-01-10 12:55:55