This article shares with you the MySQL 8.0.17 installation graphic tutorial for your reference. The specific content is as follows Installation environment: Windows x64 1. Download the installation package Download address: installation package 2. Unzip and initialize configuration Unzip and create a new initialization configuration file my.ini in the root directory Enter the following content in the initialization configuration file. Note that the installation path and data storage path are changed to your own [mysqld] # Set port 3306 port=3306 # Set the installation directory of mysql basedir=D:\App\mySQL # Set the storage directory of mysql database data datadir=D:\App\mySQL\data # Maximum number of connections allowed max_connections=200 # The number of connection failures allowed. max_connect_errors=10 \# The default character set used by the server is utf8mb4 character-set-server=utf8mb4 # The default storage engine that will be used when creating a new table default-storage-engine=INNODB #Default authentication is done by using the "mysql_native_password" plugin #mysql_native_password default_authentication_plugin=mysql_native_password [mysql] # Set the default character set of MySQL client default-character-set=utf8mb4 [client] # Set the default port used by the mysql client to connect to the server port = 3306 default-character-set=utf8mb4 3. Start the installation Open cmd as an administrator to install First enter the bin directory Enter the command mysqld --initialize --console and press Enter. The following field will appear. The field immediately following root@localhost: is the initial password. Copy and save it! Next, install the MySQL service. Run mysqld --install in the bin directory. No service name is added here, the default is mysql. You have succeeded here! 4. Start the mySQL service Enter in the command line: net start mysql to start it! Wonderful topic sharing: MySQL different versions installation tutorial MySQL 5.7 installation tutorials for various versions MySQL 5.6 installation tutorials for various versions mysql8.0 installation tutorials for various versions 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:
|
<<: Common problems in implementing the progress bar function of vue Nprogress
>>: Detailed explanation of how components communicate in React
This article shares the specific code for WeChat ...
Table of contents 1. Create a socket 2. Bind sock...
Preface The similarities and differences between ...
When troubleshooting system problems, application...
The web color picker function in this example use...
Today I have nothing to do, so I listed some tool...
Table of contents 1. Pull the image 1.1 Pull the ...
Let's briefly sort out the configuration of s...
This article shares the specific code of JavaScri...
Background color and transparency settings As sho...
1. Problem There is a table as shown below, we ne...
<br />In text design, we usually focus on th...
Table of contents Abstraction and reuse Serial Se...
1. Download the mysql repo source $ wget http://r...
Table of contents Write in front Business code us...