mysql数据库中存在各种管理的表
use mysql;
授权所有用户以 用户名root 密码root 登录MySQL
grant all privileges on *.* to root@'*' identified by 'root';
刷新权限
flush privileges;