赞
踩
压缩包安装MySQL8.2.0,记下初始密码,用该初始密码登录一直提示密码错误,很迷,不知道哪个大佬可以解释一下,于是只有修改密码。
1,修改MySQL登录密码
1,停止MySQL服务
2,关闭Mysql服务之后,继续在MySQL安装目录下的bin目录下进行操作
输入如下命令,进入安全模式
mysqld --console --skip-grant-tables --shared-memory
3,另起一个cmd,无密码登录
mysql -uroot -p
4,将root旧密码置空
use mysql;
update user set authentication_string='' where user='root'
quit
5,退出安全模式窗口
6,启动MySQL
7,无密码登入MySQL,并为root用户添加密码
mysql -uroot -p
use mysql;
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root';
8,退出,重新登录验证修改密码是否成功
9,打完收工!
1,进入MySQL安全模式的时候,需要将MySQL服务停止
2,使用PowerShell进行命令操作,才够权限
3,MySQL8.0后修改root用户名密码,需要用如下命令
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root';
https://blog.csdn.net/weixin_43423484/article/details/124408565
https://learnku.com/articles/38455
https://blog.csdn.net/q258523454/article/details/84555847
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。