MySQL 8.0.16 Win10 zip version installation and configuration graphic tutorial

MySQL 8.0.16 Win10 zip version installation and configuration graphic tutorial

This article shares with you the installation and configuration graphic tutorial of MySQL 8.0.16 Win10 zip version for your reference. The specific content is as follows

First go to the MySQL official website to download the latest version of MySQL

1. Select the community as shown in the picture

2. Click the download icon

3. Unzip to the specified disk

Example: F:\mysql8.0.16

4. Configure environment variables

MYSQL_HOME:F:\mysql8.0.16`

Add ;%MYSQL_HOME%\bin after the path

5. Add the file my.ini file

6. Put the following code into the my.ini file

mysql]
# Set the default character set of the mysql client to default-character-set=utf8
[mysqld]
#Set port 3306 port = 3306
# Set the installation directory of mysql to basedir=F:\mysql8.0.16
# Set the storage directory of mysql database data datadir=F:\mysql8.0.16\data
# Maximum number of connections allowed max_connections=200
# The default character set used by the server is the 8-bit latin1 character set character-set-server=utf8
# The default storage engine that will be used when creating a new table default-storage-engine=INNODB

Special attention: basedir and datadir, please modify them according to your actual installation directory

7. Open cmd.exe and run it as an administrator

7.1 Initialize the database

mysqld --initialize --user=mysql --console

Remember the assigned password:

7.2 Installation Service

mysqld --install MySQL

7.3 Start the service

net start MySQL

If the service is started successfully, everything is fine.

The first time you use mysql, you will be prompted to change the password

alter user 'root'@'localhost' identified by 'root' (new password)

After the modification is successful, you can log out and log in to mysql again

Other commands that may be used include:

Stop service

net stop MySQL

Deleting a service

sc delete MySQL (can be executed when a problem occurs)

Uninstall mysql

mysqld -remove

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:
  • Installation and configuration tutorial of MySQL 8.0.16 under Win10
  • mysql 8.0.16 winx64.zip installation and configuration method graphic tutorial
  • MySQL 8.0.16 compressed package installation and configuration method graphic tutorial
  • The latest graphic tutorial of mysql 8.0.16 winx64 installation under win10
  • mysql installer community 8.0.16.0 installation and configuration graphic tutorial
  • MySQL 8.0.16 installation and configuration tutorial under Windows 10
  • MySQL 8.0.16 winx64 installation and configuration method graphic tutorial under win10
  • MySQL 8.0.16 installation and configuration method graphic tutorial under Windows
  • MySQL 8.0.16 installation and configuration tutorial under CentOS7
  • MySQL 8.0.16 winx64 installation and configuration method graphic tutorial

<<:  Implementation of Docker cross-host network (manual)

>>:  Node.js+express+socket realizes online real-time multi-person chat room

Recommend

A brief discussion on the implementation principle of Vue slot

Table of contents 1. Sample code 2. See the essen...

How to get the size of a Linux system directory using the du command

Anyone who has used the Linux system should know ...

Advantages of INSERT INTO SET in MySQL

Insert data into mysql database. Previously commo...

Summary of common tool examples in MySQL (recommended)

Preface This article mainly introduces the releva...

How to solve the Docker container startup failure

Question: After the computer restarts, the mysql ...

Summary of HTML knowledge points for the front end (recommended)

1. HTML Overview htyper text markup language Hype...

Summary of commonly used multi-table modification statements in Mysql and Oracle

I saw this question in the SQL training question ...

Nginx dynamic and static separation implementation case code analysis

Separation of static and dynamic Dynamic requests...

How to check where the metadata lock is blocked in MySQL

How to check where the metadata lock is blocked i...

An in-depth summary of MySQL time setting considerations

Does time really exist? Some people believe that ...

MYSQL 5.6 Deployment and monitoring of slave replication

MYSQL 5.6 Deployment and monitoring of slave repl...