MySQL 8.0 登录用户名失败 ERROR 1045 (28000): Access denied for user ‘ODBC‘@‘localhost‘ (using password: NO
Posted achaochaoo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL 8.0 登录用户名失败 ERROR 1045 (28000): Access denied for user ‘ODBC‘@‘localhost‘ (using password: NO相关的知识,希望对你有一定的参考价值。
ERROR 1045 (28000): Access denied for user ‘ODBC’@‘localhost’ (using password: NO)
遇到这个问题,先到 bin目录下 执行 mysql -V 查看版本号。 因为不同的版本号,解决的方法有差异。
D:\\Program Files\\mysql\\bin>mysql -V
mysql Ver 8.0.28 for Win64 on x86_64 (MySQL Com`在这里插入代码片`munity Server - GPL)```
版本号:8.0.28
No.1 管理员权限 打开cmd。 关闭 MySQL Service, 或者 手动到服务里关掉。
net stop mysql
No.2 输入mysqld --console --skip-grant-tables --shared-memory 跳过密码验证
mysqld --console --skip-grant-tables --shared-memory
No.3 管理员权限打开另一个cmd,上一个cmd先别关。进入到mysql 的bin目录下,执行mysql -uroot -p
mysql -uroot -p
No.4 登录后,执行 flush privileges;
flush privileges;
No.5 使用以下命令修改用户名root 的密码。
ALTER USER 'root'@'localhost' IDENTIFIED BY 'root123';
No.6 执行退出
quit;
No.7 启动mysql 服务;
net start mysql;
以上是关于MySQL 8.0 登录用户名失败 ERROR 1045 (28000): Access denied for user ‘ODBC‘@‘localhost‘ (using password: NO的主要内容,如果未能解决你的问题,请参考以下文章
MySQL 8.0版本无法使用 nodeNavicat等三方工具连接的问题
MySQL 8.0 密码正确 但是无法登录 直接提示我密码错错误