MySQL8连接数据库错误
MySQl 8.0 连接数据库出现以下错误
1 | The user specified as a definer (‘mysql.infoschema‘@‘localhost‘) does not exist |
解决办法:
- 重新创建该用户(mysql.infoschema)
1 | create user 'mysql.infoschema' @ '%' identified by 'password'; |
- 给用户赋予权限
1 | grant all privileges on *.* to 'mysql.infoschema'@'%'; |
- 刷新数据库
1 | flush privileges; |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 编程纪元!
评论
ValineGitalk