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

Summary of methods to improve mysql count

I believe many programmers are familiar with MySQ...

About the layout method of content overflow in table

What is content overflow? In fact, when there is ...

JavaScript realizes the drag effect of modal box

Here is a case of modal box dragging. The functio...

Three implementation methods of Mysql copy table and grant analysis

How to quickly copy a table First, create a table...

How to make JavaScript sleep or wait

Table of contents Overview Checking setTimeout() ...

Detailed steps to install mysql in Win

This article shares the detailed steps of install...

Implementation of Docker deployment of web projects

The previous article has installed the docker ser...

Install Python virtual environment in Ubuntu 18.04

For reference only for Python developers using Ub...

Detailed explanation of angular parent-child component communication

Table of contents APIs used Simple Example person...

Detailed tutorial on installing nvidia driver + CUDA + cuDNN in Ubuntu 16.04

Preparation 1. Check whether the GPU supports CUD...

JavaScript to achieve simple drag effect

This article shares the specific code of JavaScri...

How to configure Linux to use LDAP user authentication

I am using LDAP user management implemented in Ce...

Using nginx + fastcgi to implement image recognition server

background A specific device is used to perform i...

Docker custom network detailed introduction

Table of contents Docker custom network 1. Introd...

How to use module fs file system in Nodejs

Table of contents Overview File Descriptors Synch...