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.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值