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