手机版
你好,游客 登录 注册 搜索
背景:
阅读新闻

MySQL 'root'@'localhost'无法登录

[日期:2015-04-20] 来源:Linux社區  作者:ynnmnm [字体: ]

今天早上同事说MySQL root账号登录不上了。我试了一下
#mysql -u root -p
提示”Access denied for user ‘root’@’localhost’ (using password: YES)”

因为年后有同事离职,我第一反应是谁修改了root密码?按照忘记root密码来重置一下密码:
#/etc/init.d/mysql stop
#mysqld_safe –skip-grant-tables &
#mysql -uroot -p
mysql>update mysql.user set password=password(‘mypassword’) where user=’root’;
mysql>flush privileges;
mysql>quit

用新密码还是无法登录,提示跟上面一样。换一个非root账号登录,查看一下user表:
mysql> select user,host from user;
+———–+———+
| user   | host |
+———–+———+
| root  | 127.0.0.1 |
| night | % |
+———–+———+

怀疑默认的localhost没有映射到127.0.0.1?试试#mysql -u root -p xxxx -h 127.0.0.1,果然可以登录。
之前配置数据库的同学没有给’root’@’localhost’和’root’@’ip’授权。
grant all privileges on . to ‘root’@’localhost’ identified by ‘mypassword’ with grant option;
grant all privileges on . to ‘root’@’118.192.91.xxx’ identified by ‘mypassword’ with grant option;

再查询一下用户表:
这里写图片描述
然后#mysql -u root -p xxxx,登录成功!

查了一下mysql -h localhost和mysql -h 127.0.0.1的区别,通过localhost连接到mysql是使用UNIX socket,而通过127.0.0.1连接到mysql是使用TCP/IP。看看状态:
mysql -h localhost > status
Connection id:     639
Current database: mysql
Current user:   root@localhost
SSL:           Not in use
Current pager: stdout
Using outfile:        ”
Using delimiter:    ;
Server version:     5.6.15-log Source distribution
Protocol version: 10
Connection:    Localhost via UNIX socket

mysql -h 127.0.0.1 > status
Connection id:     640
Current database: mysql
Current user:   root@localhost
SSL:           Not in use
Current pager: stdout
Using outfile:        ”
Using delimiter:    ;
Server version:     5.6.15-log Source distribution
Protocol version: 10
Connection:   127.0.0.1 via TCP/IP

--------------------------------------分割线 --------------------------------------

Ubuntu 14.04下安装MySQL http://www.linuxidc.com/Linux/2014-05/102366.htm

《MySQL权威指南(原书第2版)》清晰中文扫描版 PDF http://www.linuxidc.com/Linux/2014-03/98821.htm

Ubuntu 14.04 LTS 安装 LNMP Nginx\PHP5 (PHP-FPM)\MySQL http://www.linuxidc.com/Linux/2014-05/102351.htm

Ubuntu 14.04下搭建MySQL主从服务器 http://www.linuxidc.com/Linux/2014-05/101599.htm

Ubuntu 12.04 LTS 构建高可用分布式 MySQL 集群 http://www.linuxidc.com/Linux/2013-11/93019.htm

Ubuntu 12.04下源代码安装MySQL5.6以及Python-MySQLdb http://www.linuxidc.com/Linux/2013-08/89270.htm

Windows下忘记MySQL root密码的解决方法  http://www.linuxidc.com/Linux/2015-03/114881.htm

--------------------------------------分割线 --------------------------------------

本文永久更新链接地址http://www.linuxidc.com/Linux/2015-04/116492.htm

linux
相关资讯       MySQL root  MySQL root无法登录 
本文评论   查看全部评论 (0)
表情: 表情 姓名: 字数

       

评论声明
  • 尊重网上道德,遵守中华人民共和国的各项有关法律法规
  • 承担一切因您的行为而直接或间接导致的民事或刑事法律责任
  • 本站管理人员有权保留或删除其管辖留言中的任意内容
  • 本站有权在网站内转载或引用您的评论
  • 参与本评论即表明您已经阅读并接受上述条款