MySQL: ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES/NO);问题解决

报错分析

ERROR 1045 (28000): Access denied for user ‘root’@‘localhost’ (using password: YES);
①Access denied(拒绝访问)
②using password:NO/YES 是否输入密码。

适用条件

① Windows10
② mysql 5.5 社区安装版

原因

暂时不明。
Mysql Command Line Client可以使用密码登录,但cmd会报错。
其他办法均无法解决。

最终解决方案

重新设置mysql登录密码

  1. MySQL的目录下,以管理员身份打开my.ini文件;
  2. 在[mysqld]下一行添加skip-grant-tables(用于跳过密码)
  3. 重启MySQL服务器。
  4. 登录mysql,键入mysql –uroot –p 不输入密码直接进入
  5. 输入
    set password for root'@'localhost'=password('xxxxxx');
  6. 报错:ERROR 1290:The MySQL server is running with the --skip-grant-tables option so it can not excute this statement
  7. 输入flush privileges;
  8. 再次输入
    set password for 'root'@'localhost'=password("xxxxxx');
  9. 密码设置成功,问题解决。
xxxxxx为自己设置的密码。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值