Windows system mysql5.7.18 installation graphic tutorial

Windows system mysql5.7.18 installation graphic tutorial

MySQL installation tutorial for Windows system

download

1. Log in to https://dev.mysql.com/downloads/installer/

Select Microsoft Windows

Click Download

2. Click No thanks, just start my download. at the bottom of the page to start downloading

Install

1. Double-click the newly downloaded file mysql-installer-community-5.7.18.1.msi to start the installation

2. Click Add...

3. Select I accept the license terms

Click Next

4. Select the product you want to install

I chose MySQL Server 5.7.18-x64 here

Then click Next

5. Click execute

6. Wait for a moment and the installation is complete.

Click Next

7. Click Next

8. Select standalone MYSQL server / classic MYSQL replication

Click Next

9. Select Development machine for configuration type

Click Next

10. Enter the Root password twice.

Click Next

11. Select configure MYSQL server as a windows service

Select start the MYSQL server at system startup (It is recommended to select this option. Since I don’t often use MySQL on Windows, I uncheck this option here.)

Select standard system account

Click Next

12. Decide whether to open the port based on your needs. I did not open the port.

Click Next

13. Click Execute

14Click finish

15. Click Cancel to stop configuring MYSQL

set up

If you need to log in remotely, you need to set up the following

1. Set up remote login for specified users

Login to mysql

use mysql
select host, user from user;
update user set host = "%" where user = "root";
flush privileges;

1. Add firewall rules Open the control panel and click Firewall

Click Advanced Settings

Right-click Inbound Rules and click New Rule

Select the port , next

Select TCP and Specific local ports , enter 80,3306 , and click Next.

Select Allow the connection , and then click Next.

Select Domain, Private, Public , Next

Give this rule a name, such as Modify 80 and 3306 . Click Finish

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:
  • Tutorial on installing and changing the root password of MySQL 5.7.20 decompressed version
  • MySQL5.7.17 winx64 installation version configuration method graphic tutorial under Windows server 2008 r2
  • How to install MySQL 5.7 from source code in CentOS 7 environment
  • Tutorial on installing lnmp using yum on centos7 (linux+nginx+php7.1+mysql5.7)
  • A concise tutorial on how to install mysql5.7 decompressed version on CentOS7
  • Detailed tutorial for installing mysql5.7.21 under Windows system
  • MySQL 5.7.21 installation and configuration tutorial
  • mysql5.7.21.zip installation tutorial
  • MySQL 5.7.23 version installation tutorial and configuration method

<<:  JavaScript regular verification password strength implementation method

>>:  Use of Linux dynamic link library

Recommend

Project practice of deploying Docker containers using Portainer

Table of contents 1. Background 2. Operation step...

How to ensure that every page of WeChat Mini Program is logged in

Table of contents status quo Solution Further sol...

RHEL7.5 mysql 8.0.11 installation tutorial

This article records the installation tutorial of...

Detailed explanation of MySQL backup and recovery practice of mysqlbackup

1. Introduction to mysqlbackup mysqlbackup is the...

Example of how to configure nginx in centos server

Download the secure terminal MobaXterm_Personal F...

Detailed explanation of the misunderstanding between MySQL and Oracle

Table of contents Essential Difference Database s...

Meta viewport makes the web page full screen display control on iPhone

In desperation, I suddenly thought, how is the Sin...

Detailed graphic tutorial on installing centos7 virtual machine in Virtualbox

1. Download centos7 Download address: https://mir...

iframe src assignment problem (server side)

I encountered this problem today. I reassigned the...

The easiest way to make a program run automatically at startup in Linux

I collected a lot of them, but all ended in failu...

Analysis of the Poor Performance Caused by Large Offset of LIMIT in MySQL Query

Preface We all know that MySQL query uses the sel...

How to locate MySQL slow queries

Preface I believe that everyone has had experienc...

Problems with using multiple single quotes and triple quotes in MySQL concat

When dynamically concatenating strings, we often ...

Analysis of the process of implementing Nginx+Tomcat cluster under Windwos

Introduction: Nginx (pronounced the same as engin...

5 cool and practical HTML tags and attributes introduction

In fact, this is also a clickbait title, and it c...