mysql8.0.15安装过程中卡在Initializing Database中并报错

报错信息如下:

Beginning configuration step: Initializing Database
Attempting to run MySQL Server with --initialize-insecure option...
Starting process for MySQL Server 8.0.15...
Starting process with command: C:Program FilesMySQLMySQL Server 8.0inmysqld.exe --defaults-file="C:ProgramDataMySQLMySQL Server 8.0my.ini" --console --initialize-insecure=on --lower-case-table-names=1...
mysqld: File '.鐏扮伆鐨勭數鑴?bin.index' not found (OS errno 2 - No such file or directory)
2019-03-12T14:18:41.075877Z 0 [Warning] [MY-010915] [Server] 'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'ERROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will be merged with strict mode in a future release.

方案:

原因是my.ini在创建时不能编译中文然后乱码,然后读取my.ini文件时遇到乱码无法继续运行

解决办法:
将计算机名字、组名等所有中文改成纯英文
卸载之前所安装的mysql server,清理注册表,卸载mysql服务,删除data数据
重启计算机使计算机改名生效
重装mysql server
成功

.

原文地址:https://www.cnblogs.com/fightjianxian/p/12268650.html