码迷,mamicode.com
首页 > 数据库 > 详细

修改MySQL中权限,为远程授权

时间:2017-05-02 16:07:26      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:statement   option   color   ges   with   ant   mysq   class   用户   

在进入mysql之后,输入相应的语句:

GRANT ALL PRIVILEGES ON *.* TO myuser@% IDENTIFIED BY mypassword WITH GRANT OPTION;

其中myusermypassword 需要替换成实际的用户名和密码。
例如GRANT ALL PRIVILEGES ON *.* TO root@% IDENTIFIED BY admin WITH GRANT OPTION;

可能会报错,如下:

ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

 

改正:

mysql> set password=password(admin);
Query OK, 0 rows affected, 1 warning (0.01 sec)

mysql> GRANT ALL PRIVILEGES ON *.* TO root@% IDENTIFIED BY admin WITH GRANT OPTION; FLUSH PRIVILEGES;
Query OK, 0 rows affected, 1 warning (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)

mysql> quit;
Bye

成功修改

修改MySQL中权限,为远程授权

标签:statement   option   color   ges   with   ant   mysq   class   用户   

原文地址:http://www.cnblogs.com/mswangblog/p/6796400.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!