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
Through permission-based email marketing, not onl...
Preface The MySQL permission table is loaded into...
Table of contents background 1. Document Descript...
This article shares the specific code of vue+echa...
I believe many programmers are familiar with MySQ...
Use scenarios: The project's pages need to lo...
Recently I was looking at how Docker allows conta...
1. Overview of file permissions and ownership 1. ...
If you have experience in vue2 project developmen...
<br />This tag can display a horizontal line...
Table of contents 1 The common rules for creating...
K8s k8s is a cluster. There are multiple Namespac...
With the right settings, you can force Linux user...
In the previous article, we introduced: MySQL8.0....
vue+el-upload multiple files dynamic upload, for ...