How to upgrade MySQL 5.6 to 5.7 under Windows

How to upgrade MySQL 5.6 to 5.7 under Windows

Written in front

There are two ways to upgrade MySQL: in-place upgrade and logical upgrade. There is no essential difference between these two upgrade methods. There are just some differences in the processing of data files. In-place upgrades directly copy data files, while logical upgrades process data files through logical export and import, which requires the use of mysqldump.

As we all know, logical upgrades take a long time when the amount of data is large. So today we are going to talk about upgrading in place.

In-place upgrade

1. Close the existing MySQL. Use the cmd window to enter the mysql directory and remove the mysql service.

X:\Ares\bin\mysql5.6\bin>mysqld --remove mysql5.6
Service successfully removed.

2. Download the latest mysql5.7 compressed package.

Download address: https://dev.mysql.com/downloads/mysql/

When you unzip the latest MySQL 5.7 compressed package, you will find that there is no data directory and my.ini file, which is different from the previous version.

這里寫圖片描述

3. Copy the data directory and my.ini file of mysql5.6 to mysql5.7.

Please note that some of the configurations in version 5.6 of my.ini are no longer available in version 5.7.

Make the following changes to the mysql.ini file configuration.

[mysqld]
# Set the installation directory of mysql [modify according to local conditions]
basedir = X:/Ares/bin/mysql
# Set the storage directory for mysql database data [modify according to local conditions]
datadir = X:/Ares/bin/mysql/data
#Set port 3306 port = 3306
# Maximum number of connections allowed max_connections=200
# The default character set used by the server is the 8-bit latin1 character set character-set-server=utf8
# The default storage engine that will be used when creating a new table default-storage-engine=INNODB
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
[mysql]
# Set the default character set of the mysql client to default-character-set=utf8

4. Add the mysql5.7 service to the win service queue and start the mysql service.

Add the mysql5.7 service to the win service queue

X:\Ares\bin\mysql5.7\bin>mysqld --install mysql5.7
Service successfully removed.

Start mysql service

X:\Ares\bin\mysql5.7\bin>net start mysql5.7
mysql5.7 service is starting..
The mysql5.7 service has been started successfully.

5. Upgrade mysql: mysql_upgrade -uroot -p

X:\Ares\bin\mysql5.7\bin>mysql_upgrade -uroot -p123
.......Omit 10,000 words.............

The upgrade speed depends on the size of the data directory.

6. After the upgrade is successful, restart the mysql5.7 service again

X:\Ares\bin\mysql5.7\bin>net stop mysql5.7
The mysql service is stopping.
The mysql service has been stopped successfully.
X:\Ares\bin\mysql5.7\bin>net start mysql5.7
mysql5.7 service is starting..
The mysql5.7 service has been started successfully.

7. The installation and upgrade are complete.

The above is the method I introduced to you to upgrade Mysql5.6 to 5.7 under Win. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • MySQL 5.7.30 Installation and Upgrade Issues Detailed Tutorial
  • Upgrade Docker version of MySQL 5.7 to MySQL 8.0.13, data migration
  • phpstudy2018 Tutorial on Upgrading MySQL 5.5 to 5.7 (with pictures and text)
  • Pitfalls and solutions for upgrading MySQL 5.7.23 in CentOS 7
  • Some pitfalls that developers must pay attention to after upgrading to MySQL 5.7
  • Best Practices for MySQL Upgrades
  • How to upgrade MySQL version to 5.7.17 in phpStudy
  • Detailed tutorial for upgrading MySQL 5.7.17 free installation version on Windows (x86, 64bit)
  • Some "pitfalls" of MySQL database upgrade

<<:  Avoid abusing this to read data in data in Vue

>>:  Teach you a trick to achieve text comparison in Linux

Recommend

Let's talk about the difference between containers and images in Docker

What is a mirror? An image can be seen as a file ...

More elegant processing of dates in JavaScript based on Day.js

Table of contents Why use day.js Moment.js Day.js...

A quick solution to the first login failure in mysql5.7.20

First, we will introduce how (1) MySQL 5.7 has a ...

MySQL compressed package version zip installation configuration method

There are some problems with the compressed versi...

JavaScript canvas to achieve scratch lottery example

This article shares the specific code of JavaScri...

MySQL table type storage engine selection

Table of contents 1. View the storage engine of t...

Example of how to quickly delete a 2T table in mysql in Innodb

Preface This article mainly introduces the releva...

Docker image access to local elasticsearch port operation

Using the image service deployed by docker stack,...

How to install mysql in docker

I recently deployed Django and didn't want to...

MySQL green version setting code and 1067 error details

MySQL green version setting code, and 1067 error ...

Implement QR code scanning function through Vue

hint This plug-in can only be accessed under the ...

JS realizes the automatic playback effect of pictures

This article shares the specific code of JS to ac...

CSS beginner tutorial: background image fills the entire screen

If you want the entire interface to have a backgr...

Add unlimited fonts to your website with Google Web Fonts

For a long time, website development was hampered...

Using group by in MySQL always results in error 1055 (recommended)

Because using group by in MySQL always results in...