Home > database >  Mysql - 8.0.20 - winx64.zip latest installation steps
Mysql - 8.0.20 - winx64.zip latest installation steps

Time:10-11

1. The default directory in mysql, my new ini configuration file (or find) on the network, the file format is as follows:
[client]
Port=3306
Default - character - set=UTF8MB4
[mysqld]
Port=3306
Character_set_server=UTF8MB4
Basedir="E: \ mysql - 8.0.20 - winx64"
Datadir="E: \ mysql - 8.0.20 - winx64 \ data", "
Max_connections=200
Default - storage - engine=INNODB
Lost password # to skip stages
# the skip - grant - tables
# Server="E: \ mysql - 8.0.20 - winx64 \ bin \ mysqld exe"


2, CMD to enter the command line, and into the corresponding mysql decompression bin directory E: \ mysql - 8.0.20 - winx64 \ bin> (this directory is my own, don't ask me your directory) executing the following command
PS E: \ mysql - 8.0.20 - winx64 \ bin> Mysqld - install

//initialization, generated by default data file directory [color=# FF6600]
PS E: \ mysql - 8.0.20 - winx64 \ bin> Mysqld -- the initialize - user=mysql


PS E: \ mysql - 8.0.20 - winx64 \ bin> Net start mysql
The MySQL service is starting.
MySQL service has been launched successfully,

PS E: \ mysql - 8.0.20 - winx64 \ bin> Mysql -u root -p
Enter password: * * * * * * * * * * * * (here is the password of the data file log password root @ localhost: * * * * * * * *)

//show the login success
Welcome to the MySQL monitor. Commands end with; Or \ g.
Your MySQL connection id is 8
Server version: 8.0.20

Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
Affiliates. Other names may be trademarks of their respective
Market metrix.

Type 'help. 'or' h \ 'for help. Type' \ c 'to clear the current input statement.
  • Related