MySql 5.7.21 free installation version configuration method under win10

MySql 5.7.21 free installation version configuration method under win10

1. Unzip to the location where you want to install and create the my.ini file

The content of my.ini is as follows

[mysql]
# Set the default character set of the mysql client to default-character-set=utf8
[mysqld]
#Set port 3306 port = 3306
# Set the installation directory of mysql basedir=D:\Program Files\mysql-5.7.21-winx64
# Set the storage directory of mysql database data datadir=D:\Program Files\mysql-5.7.21-winx64\data
# 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

2. Open the cmd command line with administrator privileges

3. Switch to the bin folder of the installation directory and initialize the data folder. Since there is no data folder in the decompressed directory, you do not need to create it manually.

——The initialization command is as follows

mysqld --defaults-file="D:\Program Files\mysql-5.7.21-winx64\my.ini" --initialize-insecure

——Install MySQL service

mysqld -install MySql57

——Start MySql service

net start MySql57

4. Modify the password of the initial root account. By default, there is no password. Enter the command directly

mysql -u root
show database;
use mysql;
UPDATE user SET authentication_string=PASSWORD("yourpassword") WHERE user='root';
FLUSH PRIVILEGES;
QUIT; 

Summarize

The above is the configuration method of MySql 5.7.21 free installation version under win10 introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor 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:
  • About the basic configuration tutorial of MySQL5.7.17 free installation version under Win10 (with pictures and text)
  • win10 mysql 5.6.35 winx64 free installation version configuration tutorial
  • 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

<<:  How to install vim editor in Linux (Ubuntu 18.04)

>>:  How to understand Vue front-end and back-end data interaction and display

Recommend

CSS controls the spacing between words through the letter-spacing property

letter-spacing property : Increase or decrease th...

Nginx forwarding based on URL parameters

Use scenarios: The jump path needs to be dynamica...

Detailed explanation of Vue save automatic formatting line break

I searched for many ways to change it online but ...

How to set npm to load packages from multiple package sources at the same time

Table of contents 1. Build local storage 2. Creat...

MySQL common statements for viewing transactions and locks

Some common statements for viewing transactions a...

Implementation of dynamic particle background plugin for Vue login page

Table of contents The dynamic particle effects ar...

Using JS to determine the existence of elements in an array in ten minutes

Preface In front-end development, you often need ...

React realizes secondary linkage effect (staircase effect)

This article shares the specific code of React to...

Vue project realizes paging effect

The paging effect is implemented in the vue proje...

Detailed explanation of system input and output management in Linux

Management of input and output in the system 1. U...

Detailed tutorial on installing mysql8.0.22 on Alibaba Cloud centos7

1. Download the MySQL installation package First ...

How to use JS to implement waterfall layout of web pages

Table of contents Preface: What is waterfall layo...

Linux CentOS6.5 yum install mysql5.6

This article shares the simple process of install...

Example of viewing and modifying MySQL transaction isolation level

Check the transaction isolation level In MySQL, y...