Problems and pitfalls of installing Mysql5.7.23 in Win10 environment

Problems and pitfalls of installing Mysql5.7.23 in Win10 environment

I read many tutorials, but found that I could never install it successfully. After a while of trial and error, I finally found a method that suits my computer. Friends who encounter similar situations can try this method.

1. Download

1. Download the official website: https://dev.mysql.com/downloads/mysql/. Select the compressed package with the suffix ZIP Archive and download it to your local computer according to your system (32-bit or 64-bit). (MySQL is divided into installation version and decompression version. In order to avoid unnecessary troubles when MySQL has problems and needs to be reinstalled in the future, the decompression version of MySQL is recommended)

2. Or download from Baidu Cloud: Link: https://pan.baidu.com/s/13MtHorjzMiTGGAO5umew-w Extraction code: 4d62

2. Decompression

Unzip it to a commonly used disk (I unzipped it to drive D). In the figure below, the my.ini file and data file do not exist at the beginning and need to be configured manually.

insert image description here

3. Add my.ini file

Create a new file in Notepad and copy and paste the following code:

[client]
port=3306
default-character-set=utf8
[mysqld]
port=3306
character_set_server=utf8
basedir="D:\mysql\mysql-5.7.23"
datadir="D:\mysql\mysql-5.7.23\data"
max_connections=200
default-storage-engine=INNODB

[mysqld]
show_compatibility_56 = ON
performance_schema

#Skip the password input stage skip-grant-tables

Then save it and name it my.ini

4. Configure environment variables

Computer Properties -》Advanced System Settings -》

insert image description here

Click on Environment Variables

insert image description here

In the system variables section, create a new variable name: MYSQL_HOME, variable value: D:\mysql\mysql-5.7.23 Here you should write your mysql installation path

insert image description here

Set the path and add a bin directory to the path

insert image description here

5. Initialization

Right click and run cmd as an administrator and locate the bin folder:

cd /d D:\mysql\mysql-5.7.23\bin

Enter in the cmd path above:

mysqld --initialize

Press Enter. A data folder will be generated in the root directory of mysql-5.7.23. If no data folder is generated, enter the following code:

mysqld --initialize-insecure --user=mysql

6. Continue cmd operation

mysqld --install mysql --defaults-file=D:\mysql\mysql-5.7.23\my.ini

If the installation service is displayed as already existing when running mysqld --install, enter mysqld --remove to remove the previously installed mysql and run mysqld --install again.

mysqld --install mysql

Enter net start mysql to start the database

net start mysql

Enter mysql -u root -p to enter the database (after pressing Enter, the word password will appear, ignore it, just press Enter to skip the previously configured skip-grant-tables function), and then press Enter to display the following interface:

insert image description here

Indicates successful entry into the database

7. Use MySQL management tools to operate the database

You can use Navicat (official 14-day trial available; Baidu Cloud provides a cracked version; NaviCat Lite is a free version that provides basic functions) or use Workbench, MySQL-Front

.insert image description here

Summarize

The above is what I introduced to you about the problems and pitfalls of installing Mysql5.7.23 in Win10 environment. 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!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Installation and configuration tutorial of MySQL 8.0.16 under Win10
  • MySQL 8.0.12 installation and environment variable configuration tutorial under win10
  • MySQL 8.0.15 installation and configuration tutorial under Win10
  • mysql8.0.11 winx64 installation and configuration method graphic tutorial (win10)
  • Detailed tutorial for installing MySQL 8.0.11 compressed version under win10
  • MySQL 5.7.19 installation and configuration method graphic tutorial (win10)
  • MySQL installation and configuration tutorial for win10 free installation version
  • Mysql 5.7.17 winx64 free installation version, installation and configuration graphic tutorial under win10 environment
  • MySQL 5.6 decompressed version installation and configuration method graphic tutorial (win10)
  • MySQL 5.7.13 installation and configuration method graphic tutorial (win10)

<<:  Solution to the problem that the docker container cannot be stopped

>>:  React Class component life cycle and execution order

Recommend

Detailed explanation of how Nginx works

How Nginx works Nginx consists of a core and modu...

Vue+Websocket simply implements the chat function

This article shares the specific code of Vue+Webs...

Detailed explanation of using Vue custom tree control

This article shares with you how to use the Vue c...

A brief analysis of MySQL's lru linked list

1. Briefly describe the traditional LRU linked li...

How to delete garbled or special character files in Linux

Due to encoding reasons, garbled characters will ...

How to use Vuex's auxiliary functions

Table of contents mapState mapGetters mapMutation...

Brief analysis of the MySQL character set causing database recovery errors

Importing data with incorrect MySQL character set...

Detailed explanation of how to use CMD command to operate MySql database

First: Start and stop the mysql service net stop ...

Introduction to ufw firewall in Linux

Let's take a look at ufw (Uncomplicated Firew...

MySQL Query Cache Graphical Explanation

Table of contents 1. Principle Overview Query Cac...