MySQL 5.7.21 installation and configuration method graphic tutorial (window)

MySQL 5.7.21 installation and configuration method graphic tutorial (window)

Install mysql5.7.21 in the window environment. The details are as follows

1. Download the free installation package mysql-5.7.21-winx64.zip from the MySQL official website

2. Unzip to the corresponding directory (here unzip to F:\mysql-5.7.21-winx64)

3. Configure environment variables and add the MySQL startup directory (F:\mysql-5.7.21-winx64\bin) to Path

4. Create the my.ini file in the MySQL directory (F:\mysql-5.7.21-winx64) with the following content:

[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 to basedir=F:\mysql-5.7.21-winx64 
# Set the storage directory of mysql database data datadir=F:\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 

5. Run cmd as an administrator

Change directory: C:\Windows\system32>cd F:\mysql-5.7.21-winx64\bin

Generate MySQL service:

F:\mysql-5.7.21-winx64\bin>mysqld -install 
Service successfully installed.

Generate data directory: F:\mysql-5.7.21-winx64\bin>mysqld --initialize-insecure --user=mysql

Start the MySQL service:

C:\Windows\system32>net start mysql 
The MySQL service is starting. 
The MySQL service has been started successfully.

6. Log in to the database and change the password (the default password is empty)

Log in to the database:

C:\Windows\system32>mysql -uroot -p 
Enter password: 
Welcome to the MySQL monitor. Commands end with ; or \g. 
Your MySQL connection id is 2 
Server version: 5.7.21 MySQL Community Server (GPL) 
 
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. 
 
Oracle is a registered trademark of Oracle Corporation and/or its 
affiliates. Other names may be trademarks of their respective 
owners. 
 
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 
 
mysql>

To change your password:

mysql> 
mysql> 
mysql> show databases; 
+--------------------+ 
| Database | 
+--------------------+ 
| information_schema | 
|mysql | 
| performance_schema | 
|sys| 
+--------------------+ 
4 rows in set (0.00 sec) 
 
mysql> use mysql; 
Database changed 
mysql> update user set authentication_string=password("new password") where User="root"; 
Query OK, 1 row affected, 1 warning (0.00 sec) 
Rows matched: 1 Changed: 1 Warnings: 1 
mysql> 
mysql> FLUSH PRIVILEGES;

Wonderful topic sharing: Installation tutorials for different versions of MySQL Installation tutorials for various versions of MySQL 5.7

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:
  • Detailed tutorial for installing mysql5.7.21 under Windows system
  • MySQL 5.7.21 winx64 installation and configuration method graphic tutorial
  • MySQL 5.7.21 installation and password configuration tutorial
  • MySQL 5.7.21 decompression version installation and configuration method graphic tutorial
  • mysql installer web community 5.7.21.0.msi installation graphic tutorial
  • MySQL 5.7.21 winx64 free installation version configuration method graphic tutorial
  • MySQL 5.7.21 installation and configuration tutorial
  • MySQL 5.7.21 decompression version installation and configuration method graphic tutorial (win10)
  • MySQL 5.7.20\5.7.21 free installation version installation and configuration tutorial
  • MySQL 5.7.21 decompression version installation and configuration graphic tutorial

<<:  Simple steps to configure Nginx reverse proxy with SSL

>>:  jQuery plugin to achieve image comparison

Recommend

Example of making a butterfly flapping its wings with pure CSS3

Pure CSS3 makes a butterfly flapping its wings, s...

Tutorial on how to create a comment box with emoticons using HTML and CSS

HTML comment box with emoticons. The emoticons ar...

The actual process of implementing the guessing number game in WeChat applet

Table of contents Function Introduction Rendering...

Example code for mixing float and margin in CSS

In my recent studies, I found some layout exercis...

Xftp download and installation tutorial (graphic tutorial)

If you want to transfer files between Windows and...

JavaScript to implement login form

This article example shares the specific code of ...

JS implements circular progress bar drag and slide

This article example shares the specific code of ...

Simple implementation of Mysql add, delete, modify and query statements

Simple implementation of Mysql add, delete, modif...

MySQL download and installation details graphic tutorial

1. To download the MySQL database, visit the offi...

How to add Tomcat Server configuration to Eclipse

1. Window -> preferences to open the eclipse p...

How to install JDK and Mysql on Ubuntu 18.04 Linux system

Platform deployment 1. Install JDK step1. Downloa...

Start a local Kubernetes environment using kind and Docker

introduce Have you ever spent a whole day trying ...

Explanation of the precautions for Mysql master-slave replication

1. Error error connecting to master 'x@xxxx:x...