MySQL 5.7.27 installation and configuration method graphic tutorial

MySQL 5.7.27 installation and configuration method graphic tutorial

The installation tutorial of MySQL 5.7.27 is recorded as follows and shared with everyone

Step 1: Unzip the folder:

Step 2: Configure environment variables

Step 3: Create a new my.ini file under the unzipped folder

insert image description here

[mysqld]
#Set port 3306 to 3306
# Set the installation directory of mysql to basedir=E:\MySQl\mysql-5.7.27-winx64
# Set the storage directory of mysql database data datadir=E:\MySQl\mysql-5.7.27-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
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
[mysql]
# Set the default character set of the mysql client to default-character-set=utf8

Step 4: Install MySQL in the DOS window:

Step 5: Set MySQL password:

Stop mysql first:

Find the my.ini file and add skip-grant-tables to any line under the mysqld field.

After completing the above commands, return to the my.ini file and delete skip-grant-tables

Wonderful topic sharing:

MySQL different versions installation tutorial

MySQL 5.7 installation tutorials for various versions

MySQL 5.6 installation tutorials for various versions

mysql8.0 installation tutorials for various versions

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL 5.7.25 installation and configuration method graphic tutorial
  • MySQL 5.7.27 winx64 installation and configuration method graphic tutorial
  • MySQL 5.7.27 installation and configuration method graphic tutorial
  • Win32 MySQL 5.7.27 installation and configuration method graphic tutorial
  • MySql 5.7.20 installation and configuration of data and my.ini files
  • Detailed steps to install MySql 5.7.21 in Linux
  • Detailed tutorial for installing mysql5.7.21 under Windows system
  • MySQL 5.7.20 Green Edition Installation Detailed Graphic Tutorial
  • MySQL 5.7.20 installation and configuration method graphic tutorial under Windows
  • MySQL 5.7.25 compressed version installation and configuration method graphic tutorial

<<:  Screen command and usage in Linux

>>:  Vue practice of preventing multiple clicks

Recommend

Vue uses el-table to dynamically merge columns and rows

This article example shares the specific code of ...

Example code of the spread operator and its application in JavaScript

The spread operator allows an expression to be ex...

A problem with MySQL 5.5 deployment

MySQL deployment Currently, the company deploys M...

How to place large images in a small space on a web page

Original source: www.bamagazine.com There are nar...

Detailed explanation of Redis master-slave replication practice using Docker

Table of contents 1. Background 2. Operation step...

The difference and use of json.stringify() and json.parse()

1. Differences between JSON.stringify() and JSON....

Detailed steps to store emoji expressions in MySQL

Caused by: java.sql.SQLException: Incorrect strin...

HTML Table Tag Tutorial (47): Nested Tables

<br />In the page, typesetting is achieved b...

CSS: visited pseudo-class selector secret memories

Yesterday I wanted to use a:visited to change the...

SQL method for calculating timestamp difference

SQL method for calculating timestamp difference O...

React diff algorithm source code analysis

Table of contents Single Node Diff reconcileSingl...

Implementing a simple timer in JavaScript

This article example shares the specific code of ...