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

centOS下mysql-ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

时间:2014-06-05 02:54:40      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:c   style   a   tar   ext   color   

系统centOS-6.3

方法操作很简单,如下:
# /etc/init.d/mysql stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql

# mysql>use mysql ;
mysql> UPDATE user SET Password=PASSWORD(‘newpassword‘) where USER=‘root‘ and host=‘root‘ or host=‘localhost‘;//把空的用户密码都修改成非空的密码就行了。
mysql> FLUSH PRIVILEGES;
mysql> quit # /etc/init.d/mysqld restart
# mysql -uroot -p
Enter password: <输入新设的密码newpassword>

这样问题就解决了!

centOS下mysql-ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO),布布扣,bubuko.com

centOS下mysql-ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

标签:c   style   a   tar   ext   color   

原文地址:http://blog.csdn.net/benjamin_whx/article/details/27208517

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