mysql 8 以上版本,安装时未设置初始密码解决方案:

我安装的是最新版的mysql8,安装的时候设置的是最简单的密码root,尝试了2次,都是在登录的时候输入root进不去,测试后发现密码居然为空

以下是网络上摘录的解决方案:

命令窗口下进入mysql

  1. 通过root无密码登录myslq use mysql;
  2. select host,user,authentication_string,plugin from user;
  3. 查看root用户密码是否为空
  4. update user set authentication_string=' ' where user='root';
  5. ALTER user 'root'@'localhost' IDENTIFIED BY '123456';

退出后重新登录就好了

posted @ 2023-03-28 23:25  陈亦洺  阅读(341)  评论(0编辑  收藏  举报