mysql 安装包一路next安装,

到Apply Configuration,卡住在Start the server,原因是mysql8新版本的登录身份不对,需要进入服务,找到mysql80,然后属性,修改为本地系统账户。

然后重试,这样可以安装成功了。

本地dos窗口登录mysql , mysql -hlocalhost -uroot -proot -P3306

查看加密方式,select Host,User,plugin from mysql.user;
alter user root@localhost identified with mysql_native_password by '123456';




