天天看点

授权MySQL root 用户所有权限

1 -- 登录
 2 mysql -u root -p
 3 -- 查询mysql用户
 4 select user,host,authentication_string from mysql.user;
 5 -- 切换到mysql库
 6 use mysql;
 7 -- 修改root用户host
 8 update user set host='%' where user='root';
 9 -- 授权
10 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%';
11 -- 刷新
12 FLUSH PRIVILEGES;      

作者:奇

出处:https://www.cnblogs.com/fanqisoft/

本文版权归作者和博客园共有,欢迎转载,但必须给出原文链接,并保留此段声明,否则保留追究法律责任的权利。