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
Problem Description The MySQL startup error messa...
Multi-table query Use a single select statement t...
This article shares the installation tutorial of ...
This article is a MySQL configuration file soluti...
Virtualization 1. Environment Centos7.3 Disable s...
This article shares the specific code for WeChat ...
Sometimes you need to access some static resource...
Due to the needs of the project, I plan to study ...
1. Introduction to mysqlbackup mysqlbackup is the...
Detailed explanation of the misplacement of the in...
Method 1: INSERT INTO t1(field1,field2) VALUE(v00...
Since the network requests initiated by native js...
Form validation is one of the most commonly used ...
First of all, for security reasons, JavaScript ca...
Table of contents 1. The concept of process and t...