美文网首页
Mysql报错1449 - The user specified

Mysql报错1449 - The user specified

作者: xintop | 来源:发表于2021-06-29 16:25 被阅读0次

mysql 数据库通过文件还原后报错:
1449 - The user specified as a definer ('root'@'%') does not exist

分析原因:一般是因为权限导致的。通过以下脚本赋权即可解决。

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

flush privileges;

相关文章

网友评论

      本文标题:Mysql报错1449 - The user specified

      本文链接:https://www.haomeiwen.com/subject/qemrultx.html