修改mysql root用户操作权限 查看用户权限 select * from mysql.user where User=‘root’ and Host=’%’\G; 修改插入操作权限 Insert_priv代表插入操作权限 update mysql.user set Insert_priv=‘Y’ where User=‘root’ and Host=’%’; 刷新权限 flush privileges; 有时候只能管用一天,有时候能用好久,我只能保证这个方法有效果