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

Suggestions on creating business HTML emails

Through permission-based email marketing, not onl...

In-depth explanation of MySQL user account management and permission management

Preface The MySQL permission table is loaded into...

Detailed explanation of how to use $props, $attrs and $listeners in Vue

Table of contents background 1. Document Descript...

Vue+echarts realizes progress bar histogram

This article shares the specific code of vue+echa...

Summary of methods to improve mysql count

I believe many programmers are familiar with MySQ...

Nginx content cache and common parameter configuration details

Use scenarios: The project's pages need to lo...

Solve the problem of docker container exiting immediately after starting

Recently I was looking at how Docker allows conta...

Linux file/directory permissions and ownership management

1. Overview of file permissions and ownership 1. ...

HTML Tutorial: HTML horizontal line segment

<br />This tag can display a horizontal line...

A brief discussion on which fields in Mysql are suitable for indexing

Table of contents 1 The common rules for creating...

How to deploy k8s in docker

K8s k8s is a cluster. There are multiple Namespac...

How to view and configure password expiration on Linux

With the right settings, you can force Linux user...

Detailed tutorial on compiling and installing MySQL 8.0.20 from source code

In the previous article, we introduced: MySQL8.0....

vue+el-upload realizes dynamic upload of multiple files

vue+el-upload multiple files dynamic upload, for ...