Mysql8.0.19免安装版解决Access denied for user 'root'@'localhost' (using password: YES)问题

问题描述:

本人在下载安装Mysql8.0.19免安装版的过程中,使用 mysqld --initialize --console 命令后得到一个初始化mysql的秘密,但是再进入mysql时无论输几次密码都不正确,并出现报错信息:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
Mysql8.0.19免安装版解决Access denied for user 'root'@'localhost' (using password: YES)问题_第1张图片

问题解决:

  • 跳过权限验证启动mysql服务,命令为:
mysqld --console --skip-grant-tables --shared-memory

Mysql8.0.19免安装版解决Access denied for user 'root'@'localhost' (using password: YES)问题_第2张图片

  • 打开新的cmd,重新执行mysql -u root -p 命令,输入密码处按Enter键即可,实现了免密登录
    Mysql8.0.19免安装版解决Access denied for user 'root'@'localhost' (using password: YES)问题_第3张图片
  • 修改密码: alter user 'root'@'localhost' identified by 'your_new_pwd';
    修改密码时可能会发生报错:
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement

此时执行命令: flush privileges; 即可
Mysql8.0.19免安装版解决Access denied for user 'root'@'localhost' (using password: YES)问题_第4张图片

  • 下次进入mysql时,即可使用新设置的密码登录
    Mysql8.0.19免安装版解决Access denied for user 'root'@'localhost' (using password: YES)问题_第5张图片
  • 至此,成功实现免密登录mysql并重新修改密码的系列操作

问题总结:

  • 关于解决如何免密进入mysql的问题,还有一种常见方式是在 my.ini 中加入 --skip-grant-tables 语句,然后重启mysql即可免密进入,修改完密码后再把这条命名注释即可,但此种方式是否有效取决于mysql的版本。本人此次使用的是Mysql8.0.19免安装版,解压后的文件里并没有 my.ini 文件,即使自己通过上网搜索其他资料,自己新建了一个 .ini 文件也不起作用;但本人此前在使用wamp自带的mysql时遇到相同的问题时,修改 my.ini 的方法是有效的,因此Mysql的版本不同,解决方法也有变化;
  • 针对本文中的Mysql版本,在命令行输入 mysqld --console --skip-grant-tables --shared-memory 为有效方法;
  • 使用过程中的cmd均是管理员模式

参考文章:

  1. https://blog.csdn.net/Myuhua/article/details/84792121
  2. https://blog.csdn.net/s78365126/article/details/85267154

你可能感兴趣的:(Mysql8.0.19免安装版解决Access denied for user 'root'@'localhost' (using password: YES)问题)