连接上报无法刷新浏览器
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’;

这下可以连接了


















