本文主要是介绍windows error 1045 (28000) access denied for user 'root'@'localhost' (using password: YES),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
转自http://stackoverflow.com/questions/9382219/error-1045-28000-access-denied-for-user-rootlocalhost-using-password-ye
- "mysql -u root"
- use mysql
- update user set authentication_string=password('yourpassword') where user='root';
- flush privileges;
另外的一个参考:http://jingyan.baidu.com/album/af9f5a2d16fa4d43150a4552.html?picindex=13
这篇关于windows error 1045 (28000) access denied for user 'root'@'localhost' (using password: YES)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!