随笔心得

记我所见,记我所想

BlogJava 首页 新随笔 联系 聚合 管理
  34 Posts :: 0 Stories :: 16 Comments :: 0 Trackbacks
mysql> GRANT USAGE
    -> ON EXAMPLE.*
    -> TO webuser@localhost;
ERROR 1133 (42000): Can't find any matching row in the user table

错误的真正原因是 没有设置用户的密码。

正确的写法是:

mysql> GRANT USAGE
    -> ON EXAMPLE.*
    -> TO webuser@localhost
    -> identified by 'webuser';
Query OK, 0 rows affected (0.00 sec)
posted on 2007-08-17 15:40 源自有缘 阅读(385) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航: