mysql root给其它用户授权问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql root给其它用户授权问题相关的知识,希望对你有一定的参考价值。

今天登录mysql,给其它用户授权遇到问题

mysql> grant all privileges on testdb.* to dbuser@10.4.14.14 identified by 5jyeTQ;
ERROR 1044 (42000): Access denied for user root@localhost to database testdb

首先看一下root用户有没有grant权限

mysql> select user,host,grant_priv from user;
+--------+---------------+------------+
| user   | host          | grant_priv |
+--------+---------------+------------+
| dbuser | 10.11.6.23    | N          |
| root   | localhost     | N          |
| root   | 127.0.0.1     | N          |
+--------+---------------+------------+
3 rows in set (0.00 sec)

看到root后面那两个N了吗,说明root用户没有grant权限 ,现在修改一下

mysql> update user set grant_priv=Y where user=root;
Query OK, 2 rows affected (0.00 sec)
Rows matched: 2  Changed: 2  Warnings: 0

mysql> select user,host,grant_priv from user;
+--------+---------------+------------+
| user   | host          | grant_priv |
+--------+---------------+------------+
| dbname | 10.11.6.23    | N          |
| root   | localhost     | Y          |
| root   | 127.0.0.1     | Y          |
+--------+---------------+------------+
3 rows in set (0.00 sec)

现在变成Y了,flush privileges;刷新一下权限 ,然后授权试试

mysql> grant all privileges on testdb.* to dbuser@10.4.14.14 identified by 5jyeTQ;
Query OK, 0 rows affected (0.00 sec)
如果还是不行的话,重启一下mysql.

以上是关于mysql root给其它用户授权问题的主要内容,如果未能解决你的问题,请参考以下文章

mysql 一个账户能授权几个ip

Mysql 数据库的权限问题

root用户登录mysql后新建用户提示1045错误

MySQL的授权

mysql创建用户以及授权

mysl创建用户+授权+增删改查