报错信息如下:
主要是因为用root用户登录查询其他用户的表,结果这个用户不存在了,所以导致没有权限。临时解决办法,给root赋所有权限:
grant all privileges on *.* to root@"%" identified by ".";
flush privileges;