天天看點

授權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/

本文版權歸作者和部落格園共有,歡迎轉載,但必須給出原文連結,并保留此段聲明,否則保留追究法律責任的權利。