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

centos6.5下mysql无法登陆的问题

时间:2016-05-13 15:29:39      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:mysql登录   error 1045   

    在操作mysql是可能会出现无法登陆的问题,其中最常见的错误就是,ERROR 1045,如图所示的错误:

技术分享

   这种错误产生的原因有两种:1、密码错误;2、用户名不正确。网上给出的方法一般是进入安全模式,修改密码。具体操作方法是:

    # /etc/init.d/mysql stop
    # mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
    # mysql -u root mysql
    mysql> UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’;
    mysql> FLUSH PRIVILEGES;
    mysql> quit
    # /etc/init.d/mysql restart
    # mysql -uroot -p
    Enter password: <输入新设的密码newpassword>
    mysql>

但是有时依然无法登录,得到的结果还是:

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

此时就要思考是否用户名错误的原因了,安全模式再次登录用户,查看当前系统的用户:

    # /etc/init.d/mysql stop
    # mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
    # mysql -u root mysql

    

技术分享

发现用户列表中没有localhost这个主机名,此时更改主机名;

      mysql> UPDATE user SET Host=‘localhost‘ WHERE Host=‘mylinux‘;

      mysql> UPDATE user SET Host=‘localhost.localdomain‘ WHERE Host=‘mylinux2‘;

技术分享

退出后,重启mysql服务,重新登录就会发现可以登陆了!

    

技术分享

    

本文出自 “随风而飘” 博客,请务必保留此出处http://yinsuifeng.blog.51cto.com/10173491/1772918

centos6.5下mysql无法登陆的问题

标签:mysql登录   error 1045   

原文地址:http://yinsuifeng.blog.51cto.com/10173491/1772918

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