MySQL 5.7.17 winx64 free installation version configuration method graphic tutorial

MySQL 5.7.17 winx64 free installation version configuration method graphic tutorial

Recent experience in installing mysql5.7.17 free installation version

1. Download and decompress

https://pan.baidu.com/s/1mi4UHtA

2. Set environment variables

path:

Configuration File

Copy my-default, paste it in the root directory and rename it to my

Inside my configuration file

Mainly modify basedir, datadir, port
Note: data is generated by itself and does not need to be created.

4. Command Prompt Operation (DOC) Note: Must be an administrator

1. Initialization

mysqld --initialize --user=mysql --console
Note: At this time, a random password (localhost) will be generated during initialization. Be sure to remember it.
2016-05-08T02:58:53.791057Z 1 [Note] A temporary password is generated for root@
localhost: UiS<C(.i(0yg

2. Installation

Then you will be prompted:
Service successfully installed.

3. Start the service: net start MySQL
Will prompt success
The service was started successfully.

4. Change password

5. Enter the previous random password

6. Then enter the password modification statement

set password for root@localhost = password('new password');

7. Stop service
net stop mysql
That's all.

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.21 winx64 free installation version configuration method graphic tutorial
  • win10 mysql 5.6.35 winx64 free installation version configuration tutorial
  • mysql 5.7.18 winx64 free installation configuration method
  • Mysql 5.7.17 winx64 free installation version, installation and configuration graphic tutorial under win10 environment
  • MySql 5.6.14 winx64 configuration method (free installation version)
  • MySql 8.0.11-Winxp64 (free installation version) configuration tutorial

<<:  Summary of several postures that must be mastered in Linux compilation optimization

>>:  Example code for implementing WeChat account splitting with Nodejs

Recommend

A brief analysis of the difference between ref and toRef in Vue3

1. ref is copied, the view will be updated If you...

Let's talk in detail about how the NodeJS process exits

Table of contents Preface Active withdrawal Excep...

How to migrate the data directory in mysql8.0.20

The default storage directory of mysql is /var/li...

Use of Linux dynamic link library

Compared with ordinary programs, dynamic link lib...

Install zip and unzip command functions under Linux and CentOS (server)

Install zip decompression function under Linux Th...

MySQL concurrency control principle knowledge points

Mysql is a mainstream open source relational data...

Query process and optimization method of (JOIN/ORDER BY) statement in MySQL

The EXPLAIN statement is introduced in MySQL quer...

How to use the realip module in Nginx basic learning

Preface There are two types of nginx modules, off...

A brief discussion on VUE uni-app's commonly used APIs

Table of contents 1. Routing and page jump 2. Int...

Mysql date formatting and complex date range query

Table of contents Preface Query usage scenario ca...

...

Detailed explanation of the relationship between React and Redux

Table of contents 1. The relationship between red...