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

Detailed explanation of docker nginx container startup and mounting to local

First, the structure inside the nginx container: ...

A brief discussion on macrotasks and microtasks in js

Table of contents 1. About JavaScript 2. JavaScri...

MySQL 5.7.20 Green Edition Installation Detailed Graphic Tutorial

First, let’s understand what MySQL is? MySQL is a...

How to display percentage and the first few percent in MySQL

Table of contents Require Implementation Code dat...

A brief discussion on the VUE uni-app development environment

Table of contents 1. Through HBuilderX visual int...

How to install MySQL via SSH on a CentOS VPS

Type yum install mysql-server Press Y to continue...

100-1% of the content on the website is navigation

Website, (100-1)% of the content is navigation 1....

How to completely delete the MySQL service (clean the registry)

Preface When installing the executable file of a ...

How to choose between MySQL CHAR and VARCHAR

Table of contents VARCHAR and CHAR Types Conclusi...

Detailed process of building mongodb and mysql with docker-compose

Let's take a look at the detailed method of b...