原因:mysql的用户root没后获取所有权限。
执行下面语句
grant all privileges on *.* to root@"%" identified by ".";
flush privileges;
这样就正常了。