This article shares the installation and configuration tutorial of MySQL free installation version (zip) for your reference. The specific contents are as follows 1. Download from MySQL official website 2. Download 3. Create a new my.ini in the D:\mysql-5.7.22-winx64 directory and write the following code: (Note that you should change your own in D:\mysql-5.7.22-winx64) [mysqld] # Set the installation directory of mysql to basedir=D:\mysql-5.7.22-winx64 # Set the storage directory for mysql database data, which must be data datadir=D:\mysql-5.7.22-winx64\data #mysql port port=3306 # Character set character_set_server=utf8 sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES 4. Open the DOS command line (win+R, enter cmd), enter D:\mysql-5.7.22-winx64\bin, and execute the command mysqld -install mysql 5. Initialization, mysqld --initialize-insecure , after initialization, data will appear in the D:\mysql-5.7.22-winx64 directory 6. Start the service, net start mysql 7. Log in to MySQL, the default password is empty, just press Enter 8. Change password Finish! ! ! 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:
|
<<: Example method of viewing IP in Linux
>>: Detailed explanation of the getBoundingClientRect() method in js
Overview Volume is the abstraction and virtualiza...
Kubernetes is the leader in the container orchest...
This article records the installation and configu...
Table of contents Basic HTML structure Generate s...
remember: IDE disk: the first disk is hda, the se...
Table of contents 1. Download the system image fi...
Table of contents Deploy httpd with docker contai...
A few days ago, I exchanged some knowledge about ...
Preface: Integer is one of the most commonly used...
Several parts of Compose deal with environment va...
question: When I was doing project statistics rec...
If you want to exit bash, there are two options: ...
ps: The environment is as the title Install possi...
Use native JS to write a nine-square grid to achi...
<br />Although there are many web page creat...