win10 mysql 8.0 .zip 安装
官网下载地址:下载第一个即可,
MySQL :: Download MySQL Community Server
下载后解压:
powershell以管理员运行:
将“根目录/bin”路径添加到path环境变量中,管理员启动power shell
依次输入:
注意,有些是两个-,有些是一个-。
mysqld--initialize-insecure--user=mysql
mysqld --install mysql
net start mysql
mysql -u root -p
不用输密码,直接回车进入:
以上操作之后,是没有密码的,有些连接操作实现不了,可以设置一个简单的密码解决该问题,输入以下:
alter user‘root‘@‘localhost‘ identified with mysql_native_password by ‘新密码‘;
FLUSH PRIVILEGES;
新密码就是你想要设置的密码。
注意事项:
不用自己建立data和imi文件;
管理员运行power shell而不是cmd.