mysql 8 以上版本,安装时未设置初始密码解决方案:
我安装的是最新版的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';
退出后重新登录就好了