It is too troublesome to find the installation tutorial every time, so I back up the steps for myself to check later. Unzip version download address https://dev.mysql.com/downloads/mysql/, the detailed diagram is as follows: 1. Choose the one that suits you to download according to your needs. 2. Unzip the installation package to your favorite path. I chose D:\Program Files\ 3. Configure environment variables I am using Windows 10, find the environment variable configuration location Add environment system variables MYSQL_HOME D:\Program Files\mysql-5.7.23-winx64 Edit the path variable and add MYSQL_HOME 4. Create a new my.ini file. There is no such file in version 5.7, so you need to create it yourself. The content is as follows. Please note that you need to modify your own file address. [mysqld] port = 3306 basedir=D:/Program Files/mysql-5.7.23-winx64 datadir=D:/Program Files/mysql-5.7.23-winx64/data max_connections=200 character-set-server=utf8 default-storage-engine=INNODB sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES [mysql] default-character-set=utf8 Put the my.ini file in the D:\Program Files\mysql-5.7.23-winx64 directory. 5. Open the cmd command window and switch to the MySQL directory. 6. Execute the mysqld -install command to install 7. Execute mysqld --initialize-insecure --user=mysql command to initialize After success, the data directory will be generated and the root user will be created. 8. Execute the net start mysql command to start MySQL. 9. If the startup is successful, execute the "mysqladmin -u root -p password new password" command to set the password. The old root password is empty, just press Enter. The decompressed version installation is now complete. Summarize The above is the detailed graphic installation tutorial of MySQL5.7.23 decompressed version 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:
|
<<: Using JavaScript difference to implement a comparison tool
>>: Detailed explanation of Alibaba Cloud security rule configuration
Table of contents 1. System environment 2. Operat...
Preface When we write web pages, we will definite...
Preface: I used the official nginx proxy_cache as...
RDF and OWL are two important semantic web techno...
Table of contents 1. Environmental Preparation 1....
Table of contents Application scenarios: Method 1...
background Ever wondered how to create a shadow e...
html , address , blockquote , body , dd , div , d...
Table of contents Achieve results Rolling load kn...
Preface Due to the weak typing of JS, loose writi...
Docker Installation curl -fsSL https://get.docker...
The <tfoot> tag is used to define the style...
<br />Adding pictures reasonably can make a ...
Table of contents background How to determine whe...
This article shares the specific code of JS to im...