1. Unzip MySQL 5.7 2. Create a new configuration file [mysql] # Set the default character set of the mysql client to default-character-set=utf8 [mysqld] #Set port 3306 port = 3306 # Set the installation directory of mysql basedir=D:\Free\mysql-5.7.26-winx64 # Set the storage directory of mysql database data datadir=D:\Free\mysql-5.7.26-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 a new table default-storage-engine=INNODB # Ignore password skip-grant-tables As shown in the figure: 3. Configure MySQL environment variables MYSQL_HOME=D:\Free\mysql-5.7.26-winx64 Add %MYSQL_HOME%\bin after PATH; 4. Install MySQL as an administrator 5. Initialize data files No error is OK 6. Start MySQL service Note: If an error message appears when starting the MySQL service, as shown in the figure below, the error is usually caused by the inconsistency between the service path and the installation path. If you have installed MySQL before and then uninstalled and reinstalled it, this problem is likely to occur The solution is: Modify the ImagePath path of MySQL in the Windows registry to the actual installation path of MySQL, as shown in the following figure After modification, it is as shown in the following figure: 7. Log in to MySQL without password and change the root password update mysql.user set authentication_string=password('root') where user='root' and Host = 'localhost'; I set the root account password to 8. Remove the Add a # sign in front to comment it out 9. Restart MySQL and log in again with the new password Successfully logged in! Summarize The above is a detailed installation and configuration tutorial of the free installation version of MySQL 5.7 under Win10 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:
|
<<: How to view server hardware information in Linux
>>: In-depth explanation of slots and filters in Vue
What is a tree in web design? Simply put, clicking...
This article mainly introduces the sample code of...
Phenomenon When using Apache Spark 2.x, you may e...
In-depth understanding of this in Js JavaScript s...
need: The backend returns an array object, which ...
This article introduces Nginx from compilation an...
In daily development, front-end students often ar...
Table of contents 1. Modular concept 2. Modulariz...
I recently encountered a bug where I was trying t...
Preface I wrote a small demo today. There is a pa...
"The great river flows eastward, the waves w...
The content involved in Web front-end development...
Inserting Data insert into table name (column nam...
The previous article introduced the MySql multi-c...
Using SSH terminal (such as putty, xshell) to con...