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

What are the core modules of node.js

Table of contents Global Object Global objects an...

How to deploy code-server using docker

Pull the image # docker pull codercom/code-server...

Ubuntu installation Matlab2020b detailed tutorial and resources

Table of contents 1. Resource files 2. Installati...

An article to give you a deep understanding of Mysql triggers

Table of contents 1. When inserting or modifying ...

mysql having usage analysis

Usage of having The having clause allows us to fi...

Detailed explanation of Excel parsing and exporting based on Vue

Table of contents Preface Basic Introduction Code...

SQL implementation of LeetCode (196. Delete duplicate mailboxes)

[LeetCode] 196.Delete Duplicate Emails Write a SQ...

Solutions to the problem of table nesting and border merging

【question】 When the outer table and the inner tab...

Creating a file system for ARM development board under Linux

1. Please download the Busybox source code online...

How to build a DHCP server in Linux

Table of contents 1. Basic knowledge: 2. DHCP ser...

MySQL 8.0 upgrade experience

Table of contents Preface 1. First completely uni...

Vue implements a scroll bar style

At first, I wanted to modify the browser scroll b...

Navicat connects to MySQL8.0.11 and an error 2059 occurs

mistake The following error occurs when connectin...

How to quickly build a LAMP environment on CentOS platform

This article uses an example to describe how to q...