The latest version of MySQL5.7.19 decompression version installation guide

The latest version of MySQL5.7.19 decompression version installation guide

MySQL version: MySQL Community Edition (GPL) ------ MySQL Community Server (GPL)

Download address: https://dev.mysql.com/downloads/mysql/

https://www.jb51.net/softs/451120.html

Download file:mysql-5.7.19-winx64.zip

After downloading, unzip it.

1 Configure environment variables and add mysql/bin to PATH

2 Use cmd tool or powershell. Note that administrator privileges are required.

Running mysqld -install shows that the service has been installed successfully

Run mysqld --initialize --console to initialize MySQL and remember the initial password.

3 Start the mysql service and run net start mysql

4 Log in mysql -uroot -p

5 Change password and update permissions

alter user 'root'@'localhost' identified by 'passwd';
use mysql; 
flush privileges;

6 Close the database

Summarize

The above is the latest version of MySQL5.7.19 decompression version installation guide 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 5.7.23 winx64 decompression version installation tutorial
  • Tutorial on installing and changing the root password of MySQL 5.7.20 decompressed version
  • Installation and uninstallation of MySQL 5.7 decompressed version and summary of common problems
  • Detailed steps for installing the decompressed version of MySQL 5.7.20 (two methods)
  • MySQL 5.7.20 common download, installation and configuration methods and simple operation skills (decompression version free installation)
  • Installation method of MySQL 5.7.18 decompressed version under Win7x64
  • MySQL 5.7.23 decompression version installation tutorial with pictures and text

<<:  Example method of deploying react project on nginx

>>:  Using front-end HTML+CSS+JS to develop a simple TODOLIST function (notepad)

Recommend

What is ssh port forwarding? What's the use?

Table of contents Preface 1. Local port forwardin...

javascript to switch pictures by clicking a button

This article example shares the specific code of ...

10 ways to view compressed file contents in Linux (summary)

Generally speaking, when we view the contents of ...

Example of how to enable Brotli compression algorithm for Nginx

Brotli is a new data format that can provide a co...

When to use Map instead of plain JS objects

Table of contents 1. Map accepts any type of key ...

Specific use of ES6 array copy and fill methods copyWithin() and fill()

Table of contents Batch copy copyWithin() Fill ar...

jQuery implements time selector

This article example shares the specific code of ...

How to solve the Mysql transaction operation failure

How to solve the Mysql transaction operation fail...

In-depth understanding of Vue-cli4 routing configuration

Table of contents Preface - Vue Routing 1. The mo...

Page Speed ​​Optimization at a Glance

I believe that the Internet has become an increas...

HTML tutorial, easy to learn HTML language

1. <body background=image file name bgcolor=co...

HTML form tag tutorial (1):

Forms are a major external form for implementing ...

Practical tutorial on modifying MySQL character set

Preface: In MySQL, the system supports many chara...