MySQL 8.0.24 installation and configuration method graphic tutorial

MySQL 8.0.24 installation and configuration method graphic tutorial

This article shares the installation tutorial of MySQL 8.0.24 for your reference. The specific content is as follows

Download address: Official website

1. Unzip the folder

2. Configure environment variables and add the bin directory under mysql to PATH;

3. Create a new my.ini configuration file in the mysql directory

insert image description here

4. Modify the configuration file

[mysqld]
#Set port 3306 port=3306
#Set the installation directory of mysql basedir=D:\MySQL\mysql-8.0.24\
#Set the storage directory of mysql database data datadir=D:\MySQL\mysql-8.0.24\data\
#Skip password authentication skip-grant-tables 

5. Start CMD in administrator mode , switch the path to the bin directory under mysql, and then enter mysqld -install (install mysql service)

6. Enter mysqld --initialize-insecure --user=mysql to initialize the data file

The data directory will be automatically generated, and there will be some initial databases

7. Enter net start mysql to start the MySQL service and change the password

insert image description here

8. Use the command mysql -u root -p to enter the MySQL management interface (the password can be empty)

This is the first time I get an error. Just restart the service. Note that the password is empty.

9. Change the root password after entering the interface

alter user 'root'@'localhost' identified with mysql_native_password by '123456';

10. Finally, enter flush privileges; to refresh permissions.

11. Finally, go back and comment out the last sentence in the my.ini file.

Restart mysql and it will work normally

net stop mysql
net start mysql

If the connection is successful, it is OK.

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.24 version installation and configuration method graphic tutorial
  • MySQL 8.0.23 free installation version configuration detailed tutorial
  • MySQL 8.0.23 installation and configuration method graphic tutorial under win10
  • MySQL 8.0.22 compressed package complete installation and configuration tutorial diagram (tested and effective)
  • Detailed tutorial on installing and configuring MySql5.7 on Ubuntu 20.04
  • 10 performance configuration items that need to be adjusted after installing MySQL
  • MySQL 8.0.22 zip compressed package version (free installation) download, installation and configuration steps detailed
  • Super detailed MySQL8.0.22 installation and configuration tutorial
  • MySQL 8.0.22 winx64 installation and configuration graphic tutorial
  • MySQL 8.0.22.0 download, installation and configuration method graphic tutorial
  • CenOS6.7 mysql 8.0.22 installation and configuration method graphic tutorial
  • MySQL 8.0.22 installation and configuration method graphic tutorial under Windows 10
  • MySQL 5.5.27 winx64 installation and configuration method graphic tutorial
  • MySQL 8.0.22 winx64 installation and configuration method graphic tutorial
  • MySQL 8.0.22 download, installation and configuration method graphic tutorial
  • MySQL 8.0.22 installation and configuration graphic tutorial
  • MySQL 8.0.22 installation and configuration method graphic tutorial
  • Detailed tutorial on installation and configuration of compressed version of MySQL database

<<:  I have compiled a few cool design sites that I think are good.

>>:  Steps to package and release the Vue project

Recommend

vue3.0+echarts realizes three-dimensional column chart

Preface: Vue3.0 implements echarts three-dimensio...

Implementation of Nginx filtering access logs of static resource files

Messy log Nginx in daily use is mostly used as bo...

A brief talk about MySQL semi-synchronous replication

Introduction MySQL achieves high availability of ...

Steps for docker container exit error code

Sometimes some docker containers exit after a per...

Analysis of product status in interactive design that cannot be ignored in design

In the process of product design, designers always...

Summary of Operator Operations That Are Very Error-Prone in JavaScript

Table of contents Arithmetic operators Abnormal s...

Understanding of haslaylout and bfc parsing

1. haslayout and bfc are IE-specific and standard ...

MySQL 5.7.18 Installer installation download graphic tutorial

This article records the detailed installation tu...

Implementing a simple whack-a-mole game in JavaScript

This article shares the specific code for JavaScr...

Determine whether MySQL update will lock the table through examples

Two cases: 1. With index 2. Without index Prerequ...

Windows Server 2016 Standard Key activation key serial number

I would like to share the Windows Server 2016 act...

The url value of the src or css background image is the base64 encoded code

You may have noticed that the src or CSS backgroun...

Detailed explanation of views in MySQL

view: Views in MySQL have many similarities with ...

How to deal with too many Docker logs causing the disk to fill up

I have a server with multiple docker containers d...