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

WeChat applet realizes horizontal and vertical scrolling

This article example shares the specific code for...

Notes on using $refs in Vue instances

During the development process, we often use the ...

Detailed explanation of Linux text processing command sort

sort Sort the contents of a text file Usage: sort...

JavaScript to achieve mouse tailing effect

Mouse effects require the use of setTimeout to ge...

MySQL Oracle and SQL Server paging query example analysis

Recently, I have done a simple study on the data ...

How to monitor and delete timed out sessions in Tomcat

Preface I accidentally discovered that the half-h...

Sample code for changing the color of a png image through a CSS3 filter

This method uses the drop-shadow filter in CSS3 t...

Docker builds python Flask+ nginx+uwsgi container

Install Nginx First pull the centos image docker ...

Application examples of WeChat applet virtual list

Table of contents Preface What is a virtual list?...

Linux uses iptables to limit multiple IPs from accessing your server

Preface In the Linux kernel, netfilter is a subsy...

Even a novice can understand the difference between typeof and instanceof in js

Table of contents 1. typeof 2. instanceof 3. Diff...

Introduction to keyword design methods in web design

Many times, we ignore the setting of the web page ...

Detailed explanation of Vue3.0 + TypeScript + Vite first experience

Table of contents Project Creation Project Struct...