win10下MySQL 8.0登录Access denied for user‘root’@‘localhost’ (using password: YES)问题的解决方法
程序员文章站
2022-06-13 12:07:14
近些时间在开始学mysql,安装挺顺利的,按照网上现成的教程就能安装成功。
但是,在我开开心心地输入
mysql -uroot -p
再输入密码时,遇到了...
近些时间在开始学mysql,安装挺顺利的,按照网上现成的教程就能安装成功。
但是,在我开开心心地输入
mysql -uroot -p
再输入密码时,遇到了这个情况
access denied for user 'root'@'localhost' (using password: yes)
在网上找了很多解决办法,但是基本只有一个,在.ini文件中的mysqld条目添加
skip-grant-tables
然后重启服务器,再按照刚刚的步骤再来一遍(最后不输入密码),但是还是一条语句把我拦了下来
access denied for user 'root'@'localhost' (using password: no)
综合了网上很多方法,自己一个一个拼接着去试,最后成功了。
总体上的思想还是修改.ini配置文件的内容,不过是通过命令行的形式修改,不知道是不是因为版本迭代了把以前那个直接修改文件的方法屏蔽了,无论如何,通过命令行修改在mysql 8.0上是可以的。
下面开始吧。
1.以管理员身份打开cmd,切换到mysql的bin目录
2.关闭mysql服务器
net stop mysql
3.跳过输入密码的步骤
mysqld --defaults-file="d:\mysql\my.ini" --console --skip-grant-tables
(注意:文件名字与路径要与自己的吻合)
如果出现类似截图圈起来的语句则说明成功
4.重启服务器
net start mysql
5.登录mysql服务器
mysql -uroot -p
输入密码之后就能登录成功了。
(数字1跟字母l很像很像)
到这一步差不多就能完成了,但是当我输入
show databases;
mysql给我的反馈是:
you must reset your password using alter user statement before executing this statement.
我的猜测应该是mysql认为安装时提供的随机密码不安全,让用户重置密码。
网上找了一下,然后找到的现成办法,
密码永不过期的
alter user 'root'@'localhost' identified by '新密码' password expire never;
密码有限期的
alter user 'root'@'localhost' identified by '新密码' password expire;
然后重新登录一下服务器就能正常的操作了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
win10下MySQL 8.0登录Access denied for user‘root’@‘localhost’ (using password: YES)问题的解决方法
-
Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决
-
MySQL密码正确却无法本地登录-1045 Access denied for user 'root'@'localhost' (using password:YES
-
Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决
-
Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决方法
-
Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决方法
-
ERROR 1045 (28000): Access denied for user 'xxx'@'localhost' (using password: YES) MYSQL 新建用户 无法登录 问题解决方法
-
Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决
-
win10下MySQL 8.0登录Access denied for user‘root’@‘localhost’ (using password: YES)问题的解决方法
-
Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决