Detailed graphic description of MySql8.023 installation process (first installation)

Detailed graphic description of MySql8.023 installation process (first installation)

First, download the installation package from the MySQL official website. MySQL is open source, so just download it directly.
Here are the download steps:

insert image description here

Then select:

insert image description here

For personal use, I chose this:

insert image description here

After downloading, unzip the downloaded installation package and put it in your favorite location, then set the environment variables:

I am a win10 system, that is, this computer-properties-advanced system settings-environment variables:
Double-click Path in System Variables, and then click New:

insert image description here

Just copy the path of the unzipped bin directory into it!

insert image description here

Then the important step is: create a new text document file in the unzipped root directory and change the suffix to .ini
As shown in the figure:

insert image description here

Open my.ini as a text document and write the following content

[mysqld]
basedir=F:\Environment\mysql-8.0.23-winx64
datadir=F:\Environment\mysql-8.0.23-winx64\data\
port=3306

As administrator again! !
As administrator again! ! !
As administrator again! ! ! !
Open CMD

insert image description here

Change the path to the bin directory under mysql:
Input Statement

mysql -install

After the prompt is successful, enter the data file to initialize

mysql --initialize-insecure --user=mysql

After success, the data folder will appear in the mysql root directory. It should not exist originally!

insert image description here

Bypass password authentication:

mysqld --console --skip-grant-tables --shared-memory

Then open another cmd window with administrator privileges.

Switch to the mysql bin directory and start mysql.

net start mysql

Then use the command to enter the management interface

mysql -u root -p

After entering, use the following command to modify the root password. Please note! Mysql8.0 password modification is different from the previous one!

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

After that, refresh it and restart it to use normally:

flush privileges;

The commands used in the above steps should be the following:

mysql -install //Install mysql
mysql --initialize-insecure --user=mysql //Initialize the data file net start mysql //Start the MySQL service mysql -u root -p //Use no password to change the root password ALTER user 'root'@'localhost' IDENTIFIED BY 'new password'; //Change the root password, Mysql8.0 mode flush privileges; //Refresh the database exit //Exit the MySQL management interface net stop mysql //Shut down the MySQL service

Note: For versions prior to 8.0, how to change the password if you forget it

Find the bin directory: mysqld --skip-grant-tables
Open a cmd window again and find the bin directory: mysql will enter the login state
5.7.22 Modify password statement: update user set authentication_string=password('123456') where user='root' and host='localhost';
5.6. Change password statement: update user set password=password('123456') where user='root' and host='localhost'; (I have not tried it, but it is written like this on the Internet)

This is the end of this article about the detailed graphic description of the MySql8.023 installation process (first installation). For more information about the MySql8.023 installation process, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL 8.0.24 version installation and configuration method graphic tutorial
  • MySQL 8.0.24 installation and configuration method graphic tutorial
  • Some improvements in MySQL 8.0.24 Release Note
  • Detailed steps for Java to connect to MySQL 8.0 JDBC (IDEA version)
  • Detailed analysis of MySQL 8.0 memory consumption
  • MySQL 8.0 New Features - Introduction to the Use of Management Port
  • MySQL 8.0 New Features - Introduction to Check Constraints
  • mysql8.0.23 msi installation super detailed tutorial
  • MySQL 8.0.23 free installation version configuration detailed tutorial
  • How to install mysql8.0.23 under win10 and solve the problem of "the service does not respond to the control function"
  • Basic operations on invisible columns in MySQL 8.0

<<:  IE8 provides a good experience: Activities

>>:  The w3c organization gives style recommendations for html4

Recommend

Docker builds jenkins+maven code building and deployment platform

Table of contents Docker Basic Concepts Docker in...

Linux View File System Type Example Method

How to check the file system type of a partition ...

How to call the interrupted system in Linux

Preface Slow system calls refer to system calls t...

Docker5 full-featured harbor warehouse construction process

Harbor is an enterprise-level registry server for...

How are Vue components parsed and rendered?

Preface This article will explain how Vue compone...

Vue backend management system implementation of paging function example

This article mainly introduces the implementation...

Various methods to implement the prompt function of text box in html

You can use the attribute in HTML5 <input="...

Detailed explanation of Vue's TodoList case

<template> <div id="root"> ...

Differences in the hr separator between browsers

When making a web page, you sometimes use a dividi...

MySQL export of entire or single table data

Export a single table mysqldump -u user -p dbname...

Perfect Solution for No rc.local File in Linux

Newer Linux distributions no longer have the rc.l...

SQL-based query statements

Table of contents 1. Basic SELECT statement 1. Qu...

Learn v-model and its modifiers in one article

Table of contents Preface Modifiers of v-model: l...

A brief analysis of SQL examples for finding uncommitted transactions in MySQL

A long time ago, I summarized a blog post titled ...