1. Download 1. MySQL official website download address: https://downloads.mysql.com/archives/community/ 2. After downloading, unzip it. The unzipped image is as shown below: 3. Place the unzipped folder in your preferred location 2. Configure MySQL 1. In the mysql-5.7.17-winx64 directory, create a new my.ini. Just copy the following code and save it. my.ini will replace the following my-default.ini file Note: The contents of the my.ini file: [mysql] ; Set the default character set for the mysql client default-character-set=utf8 [mysqld] ; Set port 3306 port = 3306 ; Set the installation directory of mysql basedir=F:\mysql-5.7.10-winx64 ; Set the storage directory for mysql database data datadir=F:\mysql-5.7.10-winx64\data ; Maximum number of connections allowed max_connections=200 ; The default character set used by the server is the 8-bit latin1 character set character-set-server=utf8 ; The default storage engine that will be used when creating new tables default-storage-engine=INNODB 3. Install MySQL service 1. Right-click the Start button and select Search and enter cmd. A command prompt will appear. Right-click and select Run as Administrator. Otherwise, an error code of "Insufficient identity" will appear. 2. After opening the cmd window as an administrator, switch the directory to the bin directory of your unzipped file. Then enter mysqld install and press Enter to run it. Note that it is mysqld, not mysql. Installation success will appear. Since I already installed it, this is what happened. 3. At this time, we can use mysqld --initialize to initialize the data directory first: 4. Change password 1. Add a command skip-grant-tables under the [mysqld] entry in the my.ini configuration file, and then restart mysql 2. (1) Enter the MySQL database: mysql> use mysql;Database changed (2) Set a new password for the root usermysql> update user set authentication_string=password("new password") whereuser="root"; Query OK, 1 rows affected(0.01sec)Rows matched: 1 Changed: 1Warnings: 0 (3) Refresh the database (be sure to remember to refresh) mysql>flush privileges; QueryOK, 0 rows affected (0.00 sec) (4) Exit mysql: mysql> quit Finally, comment out skip-grant-tables in the configuration file. Next time you enter mysql -uroot -p you can log in with the new password The above is the graphic tutorial for downloading and installing MySQL version 5.7 and above introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor 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:
|
<<: Vue implements click and passes in event objects and custom parameters at the same time
>>: How to configure wordpress with nginx
background During the project development process...
1. Get is used to obtain data from the server, wh...
Port 80 is also configured. First enter the firew...
The web pinball game implemented using javeScript...
Table of contents 1. Download JDK (take jdk1.8.0 ...
1. What is Docker Secret 1. Scenario display We k...
This article shares the specific code of js to ac...
1. What is phantom reading? In a transaction, aft...
Table of contents Introduction Install Display Fi...
Mysql join query 1. Basic concepts Connect each r...
Yes, CSS has regular expressions too (Amen) Two p...
MySQL is a relational database management system....
The first method: dynamically add a class to show...
Table of contents dva Using dva Implementing DVA ...
1. Stop the MySQL service in the command line: ne...