一般出现这种情况,只要重新修改下root密码
解决方法:
1.打开/etc/mysql/debian.cnf文件,里面存储了系统管理员的密码
2. 输入命令:
mysql -udebian-sys-maint -p
再输入对应debian.cnf里对应的密码,以管理员身份进去
3.进入控制台后.按以下步骤进行:
update user set password=PASSWORD('新密码') where user='root';FLUSH PRIVILEGES;
如果你的mysql是5.7版本后的
- password字段已经改成authentication_string这个字段了,那就输入
-
update user set authentication_string=PASSWORD('新密码') where user='root';
此时可以输入quit;退出
sudo /etc/init.d/mysql restart
重启MySQL
用root帐号登录