1. Introduction: I think the changes after mysql8 are quite big compared to the previously commonly used versions. Since I have just started to install it, I will start with the basics. Now mysql8 can only be installed using the unzipped configuration version, and the fool-proof installation of the old version will no longer exist. In fact, mysql8 is not particularly troublesome once you know how to install it. Here are some points to note: 1. mysql8 does not need my.ini, and will automatically generate files in the data folder after decompression. The default port is 3306. If this file exists, mysql initialization fails. 2. If you create and set up a my.ini file, if there is a data file, delete it before initialization. Then initialize 3. After initialization, a password will be automatically generated. Please write it down. You will need to change the password when logging into MySQL later. 4. Change the encryption rules, otherwise you cannot use the tool to connect to MySQL 2. Steps: 1. Download the .zip installation package and unzip it to your own installation location: Alternatively, other versions may be selected. 2. Open cmd as an administrator and enter the bin directory of mysql. 3. Initialize and write down the generated user password (random password for root) mysqld --initialize --console 4. Install the service mysqld --install 5. Start the mysql service net start mysql 6. Log in with your account and the password you wrote down. Notice: 7. Change the root password 8. If the error 2059 is displayed at this time, it means you need to change the encryption rules: mysql -uroot -ppassword #Loginuse mysql; #Select databaseALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; #Change encryption methodFLUSH PRIVILEGES; #Refresh permissions That should be it at this point. Summarize The above is the steps and errors I introduced to you in solving the installation of MySQL8.0.16 on Windows. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Deep understanding of JavaScript syntax and code structure
>>: Tutorial on resetting the root password of Mac MySQL
The nginx configuration is as follows: Such as ht...
Recently, I was adding a series of statistical fu...
When a company builds Docker automated deployment...
This article introduces how to monitor the ogg pr...
<br />Words are the inevitable product of hu...
Table of contents Stabilization Introduction Anti...
Implement Nginx load balancing based on Docker ne...
Effect: When the slideshow moves in one direction...
This article records the installation and configu...
Problem description: For example, the content of ...
MySQL is a multi-user managed database that can a...
1. Idea It only took 6 seconds to insert 1,000,00...
Table of contents 1. this points to 2. Modify thi...
This article takes the health reporting system of...
This article uses a jQuery plug-in to create an a...