本文主要是介绍Grant的时候报错的解决:Access denied for user 'root'@'localhost' (using password: YES),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!