MySQL5.7.31压缩包zip安装步骤

1、下载MySQL压缩包5.7.31
下载地址:https://dev.mysql.com/downloads/mysql/

MySQL5.7.31压缩包zip安装步骤_第1张图片

选择mysql.5.7.31.winx64.zip下载
2、下载完成解压至当前文件夹并且在MySQL目录下新建一个my.ini的文件并保存

MySQL5.7.31压缩包zip安装步骤_第2张图片

3、以管理员身份运行命令行工具并且切换到MySQL的bin目录下
4、输入命令mysqld -install

image

5、输入命令mysqld --initialize-insecure --user=mysql

image

此时MySQL目录下会多一个data的文件夹

MySQL5.7.31压缩包zip安装步骤_第3张图片

进入data文件夹

MySQL5.7.31压缩包zip安装步骤_第4张图片

6、启动服务net start mysql并修改密码

image

7、登录MySQL,输入mysql -u root -p,此时没有设置密码,继续回车MySQL5.7.31压缩包zip安装步骤_第5张图片
8、修改密码,输入update mysql.user set authentication_string=password('123456') where user='root' and Host='localhost';

image

9、刷新权限 flush privileges;

image

10、注释或删除my.ini的最后一行

MySQL5.7.31压缩包zip安装步骤_第6张图片

11、重启服务net stop mysql ,net start mysql,登录成功!

MySQL5.7.31压缩包zip安装步骤_第7张图片

你可能感兴趣的:(mysql,数据库)