mysql 8.0.18.zip installation and configuration method graphic tutorial (windows 64 bit)

mysql 8.0.18.zip installation and configuration method graphic tutorial (windows 64 bit)

Regarding uninstalling the previously installed version of the database, you can refer to this article.

Before uninstalling, remember to copy and keep the previous data. The data of the installed version is in

Uninstallation tutorial for all installed versions of MySQL 5.7. Suggestion: Be sure to restart after uninstalling.

Table of contents

1. First go to the official website to download and click on MySQL download
2. Configure the initialization my.ini file
3. Initialize MySQL
4. Install MySQL service + start MySQL service
5. Connect to MySQL + change password

1. First go to the official website to download and click on MySQL download

2. Unzip after downloading

2.1Configure the initialization file my.ini

There is no my.ini file in the unzipped directory. You can create it yourself in the my.ini file added to the installation root directory (create a new text file and change the file type to .ini), and write the basic configuration:

[mysqld]
# Set port 3306 port=3306
# Set the installation directory of MySQL basedir=C:\Program Files\MySQL
# Set the storage directory of MySQL database data datadir=C:\Program Files\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 with the "mysql_native_password" plugin #mysql_native_password
default_authentication_plugin=mysql_native_password
[mysql]
# Set the default character set of the mysql client to 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

2.2. Create a new MySQL folder in C:\Program Files\ (if there is one, delete the previous one)

Copy all the directories and files in it to C:\Program Files\MySQL. There is no data folder originally, so create a new Data folder.


3. Initialize MySQL

During installation, to avoid errors, we try to run CMD as an administrator, otherwise errors will be reported during installation, which will lead to installation failure.

After opening, enter the bin directory of mysql

Execute the command in the bin directory under the MySQL directory:

mysqld --initialize --console 

Remember the password is the string following:, be sure to copy and save it!

4. Install MySQL service + start MySQL service

Install MySQL service

Execute the following command:

mysqld --install

If this occurs

This means that the mysql service is still deleting it.

sc decelte mysql

Then execute the above installation service

After the service is successfully installed, start the MySQL service through the command net start mysql

5. Connect to MySQL + change password

Connect to the database in the mysql bin directory mysql -u root -p
Enter the password again (the one generated by default) and press Enter

Change Password

ALTER USER 'root'@'localhost' IDENTIFIED BY 'new password';

Use the sqlyong tool to connect:

Summary: These are the detailed tutorials for installing the recently released 8.0.18 stable version. In fact, I referred to the 8.0.16 installation tutorial of a big guy and reconstructed (modified) it on his basis. I am still very grateful to his blog. I hope this blog can help everyone.

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:
  • How to install MySQL 8.0.28.0.msi on Windows (with pictures and text)
  • Install MySQL 8.0.28 on Kylin V10 and implement remote access
  • MySQL 8.0.22 installation and configuration graphic tutorial
  • MySQL 8.0.22 download, installation and configuration method graphic tutorial
  • Super detailed MySQL8.0.22 installation and configuration tutorial
  • MySQL 8.0.19 installation and configuration method graphic tutorial
  • MySQL 8.0.19 installation and configuration tutorial under Windows 10
  • MySQL 8.0.18 installation and configuration method graphic tutorial
  • MySQL 8.0.18 installation and configuration method graphic tutorial under win10 (windows version)
  • MySQL 8.0.28 installation and configuration method graphic tutorial

<<:  Solution to incomplete text display in el-tree

>>:  Linux bash: ./xxx: Unable to execute binary file error

Recommend

Solution to nginx hiding version number and WEB server information

Nginx can not only hide version information, but ...

Recommended plugins and usage examples for vue unit testing

Table of contents frame First-class error reporti...

The pitfall of MySQL numeric type auto-increment

When designing table structures, numeric types ar...

Common commands for deploying influxdb and mongo using docker

Deploy database based on docker sudo docker pull ...

Vue realizes the progress bar change effect

This article uses Vue to simply implement the cha...

Native js imitates mobile phone pull-down refresh

This article shares the specific code of js imita...

How to install Jenkins on CentOS 8

To install Jenkins on CentOS 8, you need to use t...

CSS easily implements fixed-ratio block-level containers

When designing H5 layout, you will usually encoun...

Centos6.5 glibc upgrade process introduction

Table of contents Scenario Requirements glibc ver...

ReactHooks batch update state and get route parameters example analysis

Table of contents 1. How to update in batches Con...

How to configure Nginx's anti-hotlinking

Experimental environment • A minimally installed ...

Detailed steps for porting busybox to build a minimal root file system

Busybox: A Swiss Army knife filled with small com...

How to deploy code-server using docker

Pull the image # docker pull codercom/code-server...