MySQL 5.7 and above version download and installation graphic tutorial

MySQL 5.7 and above version download and installation graphic tutorial

1. Download

1. MySQL official website download address: https://downloads.mysql.com/archives/community/

2. After downloading, unzip it. The unzipped image is as shown below:

3. Place the unzipped folder in your preferred location

2. Configure MySQL

1. In the mysql-5.7.17-winx64 directory, create a new my.ini. Just copy the following code and save it. my.ini will replace the following my-default.ini file

Note: The contents of the my.ini file:

[mysql]

; Set the default character set for the mysql client

default-character-set=utf8

[mysqld]

; Set port 3306

port = 3306

; Set the installation directory of mysql

basedir=F:\mysql-5.7.10-winx64

; Set the storage directory for mysql database data

datadir=F:\mysql-5.7.10-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 new tables

default-storage-engine=INNODB

3. Install MySQL service

1. Right-click the Start button and select Search and enter cmd. A command prompt will appear. Right-click and select Run as Administrator. Otherwise, an error code of "Insufficient identity" will appear.

2. After opening the cmd window as an administrator, switch the directory to the bin directory of your unzipped file. Then enter mysqld install and press Enter to run it. Note that it is mysqld, not mysql. Installation success will appear. Since I already installed it, this is what happened.

3. At this time, we can use mysqld --initialize to initialize the data directory first:

4. Change password

1. Add a command skip-grant-tables under the [mysqld] entry in the my.ini configuration file, and then restart mysql

2.

(1) Enter the MySQL database:

mysql> use mysql;Database changed

(2) Set a new password for the root usermysql> update user set authentication_string=password("new password") whereuser="root";

Query OK, 1 rows affected(0.01sec)Rows matched: 1 Changed: 1Warnings: 0

(3) Refresh the database (be sure to remember to refresh) mysql>flush privileges; QueryOK, 0 rows affected (0.00 sec)

(4) Exit mysql: mysql> quit

Finally, comment out skip-grant-tables in the configuration file. Next time you enter mysql -uroot -p you can log in with the new password

The above is the graphic tutorial for downloading and installing MySQL version 5.7 and above 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:
  • mysql 8.0.12 winx64 download and installation tutorial
  • Tutorial on downloading, installing, configuring and using MySQL under Windows
  • Download MySQL 5.7 and detailed installation diagram for MySql on Mac
  • MySQL 5.7.20 common download, installation and configuration methods and simple operation skills (decompression version free installation)
  • MySQL 5.7.20 compressed version download and installation simple tutorial
  • MySQL 5.7.18 download and installation process detailed instructions
  • Detailed graphic tutorial for downloading, installing, configuring and using MySQL (win7x64 version 5.7.16)
  • MySQL 5.7 Service Download and Installation Graphical Tutorial (Classic Edition)
  • Detailed explanation of mysql download and installation process

<<:  Vue implements click and passes in event objects and custom parameters at the same time

>>:  How to configure wordpress with nginx

Recommend

Example of how to implement underline effects using Css and JS

This article mainly describes two kinds of underl...

How are Vue components parsed and rendered?

Preface This article will explain how Vue compone...

td width problem when td cells are merged

In the following example, when the width of the td...

How to create your first React page

Table of contents What is Rract? background React...

Detailed explanation of HTML programming tags and document structure

The purpose of using HTML to mark up content is t...

MySQL uses aggregate functions to query a single table

Aggregate functions Acts on a set of data and ret...

Split and merge tables in HTML (colspan, rowspan)

The code demonstrates horizontal merging: <!DO...

Mysql 5.6.37 winx64 installation dual version mysql notes

If MySQL version 5.0 already exists on the machin...

A brief understanding of the relevant locks in MySQL

This article is mainly to take you to quickly und...

mysql 5.7.20 win64 installation and configuration method

mysql-5.7.20-winx64.zipInstallation package witho...

Vue Element-ui form validation rule implementation

Table of contents 1. Introduction 2. Entry mode o...

How to connect Django 2.2 to MySQL database

1. The error information reported when running th...