连接上报无法刷新浏览器
use mysql;
show tables;
ERROR 1449 (HY000): The user specified as a definer ('mysql.infoschema'@'localhost') does not exist
select user,host from user;

删除
drop user ‘mysql.infoschema’@‘127.0.0.1’;

重现创建
create user ‘mysql.infoschema’@‘localhost’ identified by ‘root’;

这下可以连接了
文章描述了一种MySQL连接问题,错误代码1449提示指定的定义者mysql.infoschema@localhost不存在。为了解决这个问题,作者执行了删除并重新创建用户mysql.infoschema@localhost的步骤,从而恢复了正常连接。
1523

被折叠的 条评论
为什么被折叠?



