MySQL 8.0.12 Quick Installation Tutorial

MySQL 8.0.12 Quick Installation Tutorial

The installation of MySQL 8.0.12 took two days and encountered various problems. Now I summarize them as follows:

The first step is to uninstall the previously installed MySQL. Refer to Completely Uninstall MySQL. Personally tested!

In the second step , refer to the MySQL 8.0.12 installation and configuration method graphic tutorial to complete the download and decompression. According to the blog installation, the prompt "MySQL service cannot be started. The service did not report any errors." will appear.

In the third step, you do not need to manually create a data folder in the decompressed directory. cd to the bin directory of mysql and use the following command

mysqld --initialize-insecure --user=mysql

Then you will see that the data folder is automatically created.

The fourth step is to install the MySQL service with mysqld --install , and then start the service with net start mysql.

Step 5. When the password appears, press Enter to enter the MySQL configuration page.

Step 6: Change your password. alter user 'root'@'localhost'IDENTIFIED BY 'MyNewPass'; Password policy restrictions must be uppercase and lowercase letters and numbers and special symbols

That’s it, done.

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:
  • MySQL 8.0.12 installation and configuration method graphic tutorial
  • mysql installer community 8.0.12.0 installation graphic tutorial
  • MySQL 8.0.12 winx64 detailed installation tutorial
  • MySQL 8.0.12 installation configuration method and password change
  • MySQL 8.0.12 decompression version installation tutorial
  • MySQL 8.0.12 decompression version installation tutorial personal test!
  • MySQL 8.0.12 installation and configuration graphic tutorial
  • MySQL Community Server 8.0.12 installation and configuration method graphic tutorial
  • MySQL 8.0.12 installation and configuration method graphic tutorial (windows10)
  • Detailed tutorial for installing mysql 8.0.12 under Windows

<<:  Detailed explanation of Angular data binding and its implementation

>>:  Linux hardware configuration command example

Recommend

How to solve nginx 503 Service Temporarily Unavailable

Recently, after refreshing the website, 503 Servi...

Use of Vue filters and custom instructions

Table of contents Filters 01.What is 02. How to d...

MAC+PyCharm+Flask+Vue.js build system

Table of contents Configure node.js+nvm+npm npm s...

Detailed explanation of custom configuration of docker official mysql image

In order to save installation time, I used the of...

Detailed explanation of the difference between flex and inline-flex in CSS

inline-flex is the same as inline-block. It is a ...

Summary of 10 amazing tricks of Element-UI

Table of contents el-scrollbar scroll bar el-uplo...

One line of code teaches you how to hide Linux processes

Friends always ask me how to hide Linux processes...

MySQL 8.0.14 installation and configuration method graphic tutorial

This article records the installation and configu...

Interpreting MySQL client and server protocols

Table of contents MySQL Client/Server Protocol If...

18 Amazing Connections Between Interaction Design and Psychology

Designers need to understand psychology reading n...

Calling the search engine in the page takes Baidu as an example

Today, it suddenly occurred to me that it would be...

Basic concepts and common methods of Map mapping in ECMAScript6

Table of contents What is a Mapping Difference be...

vue cli3 implements the steps of packaging by environment

The vue project built with cli3 is known as a zer...

Learn javascript iterator

Table of contents Introduction What does an itera...