MariaDB社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 3577|回复: 4
打印 上一主题 下一主题

权限已经设置过,为什么还是受限啊??

[复制链接]
跳转到指定楼层
1#
发表于 2008-8-22 16:11:14 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
[root@www ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.0.37 Source distribution

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> grant create ,drop         //在这里已经设置了CREATE的权限了!!
    -> on *.*
    -> to mysql;
Query OK, 0 rows affected (0.09 sec)

mysql> quit
Bye
[root@www ~]# mysql -u mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 6
Server version: 5.0.37 Source distribution

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> create database book;                                                                         //这里还是不对啊?
ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'book'
哪里的问题阿??
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 转播转播 分享分享 分享淘帖 顶 踩
2#
发表于 2008-8-22 16:27:42 | 只看该作者
加入权限以后需要刷新一下:
mysql>flush privileges;

还可以检查一下你加入权限的结果,看看数据中是否有了记录:
mysql> select host,user,password from mysql.user;
+----------------------+----------+------------------+
| host                 | user     | password         |
+----------------------+----------+------------------+
| localhost            | root     | 67457e226a1a15bd |
| deplinux.localdomain | root     | 67457e226a1a15bd |
| %                    | root     | 67457e226a1a15bd |
| %                    | mysql    | 68d4f47c49a579c9 |
+----------------------+----------+------------------+
8 rows in set (0.00 sec)
3#
 楼主| 发表于 2008-8-22 16:48:56 | 只看该作者
不明白!
host     user      passwd      哪有权限啊?

mysql> show grants for mysql;
+--------------------------------------------------------------------------------------+
| Grants for mysql@%                                                                   |
+--------------------------------------------------------------------------------------+
| GRANT ALL PRIVILEGES ON *.* TO 'mysql'@'%' IDENTIFIED BY PASSWORD '565491d704013245' |
+--------------------------------------------------------------------------------------+
1 row in set (0.00 sec)
mysql> create database test1;
ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'test1'
还是不对!

[ 本帖最后由 tracydundun 于 2008-8-22 16:57 编辑 ]
4#
 楼主| 发表于 2008-8-22 17:32:50 | 只看该作者
以解决!谢谢
5#
发表于 2008-8-22 17:38:41 | 只看该作者
继续努力
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|小黑屋|手机版|MariaDB社区 ( 京ICP备07012489号    |
业务联系: QQ:48474881; 邮箱: 48474881@qq.com; 电话:13911732319
声明:本站部分文章是网友转载,若未经作者同意或署名有误,请联系网站管理员。

GMT+8, 2024-11-1 20:31 , Processed in 0.058849 second(s), 21 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表