码迷,mamicode.com
首页 > 数据库 > 详细

Grant的时候报错的解决:Access denied for user 'root'@'localhost' (using password: YES)

时间:2014-07-01 07:08:47      阅读:461      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   strong   数据   2014   


mysql> grant all on *.* to ‘root‘@‘192.168.1.1‘ identified by ‘password‘;

ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)


确认方式(查看是否有grant all 没有就是权限不全):

mysql>SHOW GRANTS FOR‘root‘@‘localhost‘;
+---------------------------------------------------------------------+
|Grants forroot@localhost                                           |
+---------------------------------------------------------------------+
|GRANTALLPRIVILEGES ON*.*TO‘root‘@‘localhost‘WITHGRANTOPTION


解决方法:运行bin下的mysql_upgrade,再重启数据库。

(运行前,最好先备份原来的数据库)

/usr/bin/mysql_upgrade -uroot -p



Grant的时候报错的解决:Access denied for user 'root'@'localhost' (using password: YES),布布扣,bubuko.com

Grant的时候报错的解决:Access denied for user 'root'@'localhost' (using password: YES)

标签:style   blog   color   strong   数据   2014   

原文地址:http://blog.csdn.net/terry_water/article/details/36010705

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!