Detailed tutorial on installing MySQL 8.0.19 in zip version on win10

Detailed tutorial on installing MySQL 8.0.19 in zip version on win10

1. After downloading, unzip it to the directory you want to install

Download address: https://dev.mysql.com/downloads/mysql/

mysql download

2. Add the configuration file my.ini in the installation directory

[mysqld]
# Set port 3306 port=3306
# Set the installation directory of mysql basedir=D:\DevTool\MySQL-8.0.19
# Set the storage directory of mysql database data datadir=D:\DevTool\MySQL-8.0.19\data
# Maximum number of connections allowed max_connections=200
# The number of connection failures allowed. This is to prevent someone from trying to attack the database system from this host max_connect_errors = 10
# The default character set used by the server is UTF8
character-set-server=utf8mb4
# The default storage engine that will be used when creating a new table default-storage-engine=INNODB
# By default, the "mysql_native_password" plug-in is used for authentication. 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 and character set used by the mysql client to connect to the server port=3306
default-character-set=utf8mb4

You don't need to create a folder for datadir, it will be created automatically when the database is initialized.

3. Configure environment variables and add the mysql bin directory to the path

4. Initialize the database

Open a command window as administrator and execute mysqld --initialize --user=mysql --console

Initialize the database

The red box contains the root user and password, which will be used when logging in later.

5. Install the database

  • Execute mysqld -install in the command line window and Service successfully installed appears. This proves that the installation is successful!
  • Start the service with net start mysql
  • Use the mysql -u root -p command to log in to mysql. You need to enter the password used to initialize the database.

6. Change the root password

  • Use alter user 'root'@'localhost' identified by 'password'; to modify the root password
  • Where password is the password you want to use
  • You can exit mysql with the exit command and log in again with the new password

7. Create a remote user and grant permissions

  • Create user: create user 'username'@'%' identified by 'password';
  • Grant permissions: grant all privileges on *.* to 'username'@'%' with grant option;
  • Refresh privileges: flush privileges;

8. Delete the database

  • net stop mysql shuts down the service,
  • mysqld -remove or sc delete mysql to delete the mysql service
  • Delete the mysql file directory

Summarize

The above is a detailed tutorial on how to install the zip version of MySQL8.0.19 on win10. I hope it will be helpful to everyone. Thank you very much for your support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Linux system MySQL8.0.19 quick installation and configuration tutorial diagram
  • MySql Installer 8.0.18 Visual Installation Tutorial with Pictures and Text
  • Tutorial diagram of installing MySQL service through MySQL Installer under Windows
  • MySQL Installer Community 5.7.16 installation detailed tutorial
  • mysql installer community 8.0.12.0 installation graphic tutorial
  • MySQL8 Installer version graphic tutorial

<<:  Introduction and usage summary of React-Native screenshot component react-native-view-shot

>>:  Graphic tutorial on installing Ubuntu 18.04 on VMware 15 virtual machine

Recommend

Several methods to execute sql files under mysql command line

Table of contents The first method: When the MySQ...

Detailed steps to install RabbitMQ in docker

Table of contents 1. Find the mirror 2. Download ...

MySql knowledge points: transaction, index, lock principle and usage analysis

This article uses examples to explain the princip...

How to create a database in navicat 8 for mysql

When developing a website, you often need to use ...

HTML table tag tutorial (44): table header tag

<br />In order to clearly distinguish the ta...

Docker-compose tutorial installation and quick start

Table of contents 1. Introduction to Compose 2. C...

Nginx reverse proxy configuration removes prefix

When using nginx as a reverse proxy, you can simp...

How to implement line breaks in textarea text input area

If you want to wrap the text in the textarea input...

Summary of methods to include file contents in HTML files

In the forum, netizens often ask, can I read the ...

10 skills that make front-end developers worth millions

The skills that front-end developers need to mast...

Detailed tutorial for installing MySQL on Linux

MySQL downloads for all platforms are available a...

Summary of the differences between MySQL storage engines MyISAM and InnoDB

1. Changes in MySQL's default storage engine ...