我安装的是最新版的mysql8,安装的时候设置的是最简单的密码root,尝试了2次,都是在登录的时候输入root进不去,测试后发现密码居然为空
以下是网络上摘录的解决方案:
命令窗口下进入mysql
- 通过root无密码登录myslq use mysql;
- select host,user,authentication_string,plugin from user;
- 查看root用户密码是否为空
- update user set authentication_string=' ' where user='root';
- ALTER user 'root'@'localhost' IDENTIFIED BY '123456';
退出后重新登录就好了
标签:安装,时未,密码,初始密码,user,mysql,root From: https://www.cnblogs.com/gdbd/p/17267186.html