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;