打开网址:http://dev.mysql.com/downloads/mysql/

mysql安装及版本切换_Server


mysql安装及版本切换_mysql安装及版本切换_02


mysql安装及版本切换_mysql安装及版本切换_03


mysql安装及版本切换_mysql_04

二、安装

离线安装版本

最新的社区7版本的是:mysql-installer-community-5.7.29.0.msi,双击即可安装

1、选择Server Only 只安装服务端即可

mysql安装及版本切换_MySQL_05

mysql安装及版本切换_mysql安装及版本切换_06


mysql安装及版本切换_mysql_07


mysql安装及版本切换_MySQL_08


mysql安装及版本切换_mysql_09

mysql安装及版本切换_Server_10


mysql安装及版本切换_MySQL_11


mysql安装及版本切换_mysql安装及版本切换_12


mysql安装及版本切换_MySQL_13

mysql安装及版本切换_MySQL_14


mysql安装及版本切换_MySQL_15


mysql安装及版本切换_mysql安装及版本切换_16


mysql安装及版本切换_MySQL_17


mysql安装及版本切换_Server_18

mysql安装及版本切换_mysql安装及版本切换_19

测试

出现如下错误,需要配置MySQL的环境变量

mysql安装及版本切换_Server_20

mysql安装及版本切换_Server_21

解压版本安装

下载完成后为zip的压缩包,直接使用windows的资源管理器即可解压,下图为解压之后的目录结构:

mysql安装及版本切换_MySQL_22

启动MySQL

以管理员身份打开命令行, 进入 MySQL 服务器安装的目录:…\mysql-5.7.18-winx64\bin , 执行以下命令启动 MySQL

启动失败

mysql安装及版本切换_mysql_23

解决方案-官网提供的方案

https://dev.mysql.com/doc/refman/5.7/en/windows-installation.html

Important

MySQL Community 5.7 Server requires the Microsoft Visual C++ 2013 Redistributable Package to run on Windows platforms. Users should make sure the package has been installed on the system before installing the server. The package is available at the Microsoft Download Center.

mysql安装及版本切换_mysql_24

安装工具包:vcredist_x64.exe

然后按照如下步骤来一步一步执行即可

1、执行mysqld install 进行MySQL服务的安装,将mysql加入到Windows的服务中

2、net start mysql 开启MySQL服务

3、mysql -uroot -p 回车,直接登录,第一次登录没有密码, 直接按回车过,如果失败,按照图示操作即可。

4、成功需要重设密码

5、失败,初始化MySQL数据库,最后面的即为初始化密码,用该密码来登录

6、并重新设置密码即可:set password=password(‘root’)

7、建议新手学习期间MySQL的密码和用户名一样,不会忘记。

mysql安装及版本切换_mysql_25