MySQL 8.0.17 installation graphic tutorial

MySQL 8.0.17 installation graphic tutorial

This article shares with you the MySQL 8.0.17 installation graphic tutorial for your reference. The specific content is as follows

Installation environment: Windows x64

1. Download the installation package

Download address: installation package

2. Unzip and initialize configuration

Unzip and create a new initialization configuration file my.ini in the root directory

Enter the following content in the initialization configuration file. Note that the installation path and data storage path are changed to your own

[mysqld]
# Set port 3306 port=3306
# Set the installation directory of mysql basedir=D:\App\mySQL
# Set the storage directory of mysql database data datadir=D:\App\mySQL\data
# Maximum number of connections allowed max_connections=200
# The number of connection failures allowed.
max_connect_errors=10
\# The default character set used by the server is utf8mb4
character-set-server=utf8mb4
# The default storage engine that will be used when creating a new table default-storage-engine=INNODB
#Default authentication is done by using the "mysql_native_password" plugin #mysql_native_password
default_authentication_plugin=mysql_native_password
[mysql]
# Set the default character set of MySQL client default-character-set=utf8mb4
[client]
# Set the default port used by the mysql client to connect to the server port = 3306
default-character-set=utf8mb4

3. Start the installation

Open cmd as an administrator to install

First enter the bin directory

Enter the command mysqld --initialize --console and press Enter. The following field will appear. The field immediately following root@localhost: is the initial password. Copy and save it!

Next, install the MySQL service. Run mysqld --install in the bin directory. No service name is added here, the default is mysql.

You have succeeded here!

4. Start the mySQL service

Enter in the command line: net start mysql to start it!

Wonderful topic sharing:

MySQL different versions installation tutorial

MySQL 5.7 installation tutorials for various versions

MySQL 5.6 installation tutorials for various versions

mysql8.0 installation tutorials for various versions

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 8.0.18 hash join test (recommended)
  • MySQL 8.0.18 stable version released! Hash Join is here as expected
  • MySQL 8.0.17 installation and configuration method graphic tutorial
  • MySQL 8.0.17 installation and usage tutorial diagram
  • MySQL 8.0.17 installation and configuration graphic tutorial
  • MySQL 8.0.16 installation and configuration method graphic tutorial under Windows
  • mysql installer community 8.0.16.0 installation and configuration graphic tutorial
  • MySQL 8.0.16 compressed package installation and configuration method graphic tutorial
  • MySQL 8.0.16 installation and configuration tutorial under Windows 10
  • MySQL 8.0.18 installation and configuration method graphic tutorial

<<:  Common problems in implementing the progress bar function of vue Nprogress

>>:  Detailed explanation of how components communicate in React

Recommend

WeChat applet realizes simple tab switching effect

This article shares the specific code for WeChat ...

A brief analysis of Linux network programming functions

Table of contents 1. Create a socket 2. Bind sock...

7 interesting ways to achieve hidden elements in CSS

Preface The similarities and differences between ...

How to Check Memory Usage in Linux

When troubleshooting system problems, application...

Using CSS3 and JavaScript to develop web color picker example code

The web color picker function in this example use...

Detailed tutorial on installing SonarQube using Docker

Table of contents 1. Pull the image 1.1 Pull the ...

JavaScript to implement checkbox selection or cancellation

This article shares the specific code of JavaScri...

How to set background color and transparency in Vue

Background color and transparency settings As sho...

Implementation of mysql data type conversion

1. Problem There is a table as shown below, we ne...

Design Theory: Textual Expression and Usability

<br />In text design, we usually focus on th...

JS implements request dispatcher

Table of contents Abstraction and reuse Serial Se...

How to install mysql on centos and set up remote access

1. Download the mysql repo source $ wget http://r...

Various correct postures for using environment variables in Webpack

Table of contents Write in front Business code us...