欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL('root'@'%')doesnotexist问题的解决办法

程序员文章站 2024-01-08 12:40:16
创建本地mysql,运行项目时出现 The user specified as a definer ('root'@'%') does not ex...

创建本地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;