解决ubuntu下mysql的'Access denied for user 'root'@'localhost' (using password:

一般出现这种情况,只要重新修改下root密码

解决方法:
1.打开/etc/mysql/debian.cnf文件,里面存储了系统管理员的密码

2. 输入命令:

mysql -udebian-sys-maint -p

再输入对应debian.cnf里对应的密码,以管理员身份进去

3.进入控制台后.按以下步骤进行:

解决ubuntu下mysql的'Access denied for user 'root'@'localhost' (using password:

 

 

update user set password=PASSWORD('新密码') where user='root';FLUSH PRIVILEGES;

 

如果你的mysql是5.7版本后的  

  1.   password字段已经改成authentication_string这个字段了,那就输入
  2.  
    update user set 
    authentication_string=PASSWORD('新密码') where user='root';

     

此时可以输入quit;退出
sudo /etc/init.d/mysql restart
重启MySQL
用root帐号登录
上一篇:Access denied for user ''@'localhost' to database 'mysql'问题


下一篇:【mysql】安装报错Install/Remove of the Service Denied!