首页 > 数据库技术 > 详细

MYSQL连接Error (1133): Can’t find any matching row in the user table错误的解决办法

时间:2016-01-07 01:19:30      阅读:506      评论:0      收藏:0      [点我收藏+]

连接mysql数据库报错如下:

Error (1133): Can’t find any matching row in the user table


解决办法:

mysql> grant all on *.* to ‘username‘@‘%‘ identified by ‘password‘;

mysql> flush privileges;


*.*可以换成你要访问具体哪个数据库和具体哪张表


发生这一错误的原因是在变更了mysql.user表之后,没有使用FLUSH PRIVILEGES命令来更新权限表(grant tables)


本文出自 “小五台车神” 博客,请务必保留此出处http://linuxtech.blog.51cto.com/3670088/1732303

MYSQL连接Error (1133): Can’t find any matching row in the user table错误的解决办法

原文:http://linuxtech.blog.51cto.com/3670088/1732303

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!