MYSQL8.0.13 free installation version configuration tutorial example detailed explanation

MYSQL8.0.13 free installation version configuration tutorial example detailed explanation

1. Download, I take 8.0 as an example

Download address: https://dev.mysql.com/downloads/mysql/

2. Unzip to a directory, for example: D:/mysql/mysql-8.0.13-winx64

3. Configure environment variables

1. Create a new variable: MYSQL_HOME

Variable value: D:/mysql/mysql-8.0.13-winx64

2. Modify the path variable

Add a record: %MYSQL_HOME%/bin

4. Create the my.ini file in the D:/mysql/mysql-8.0.13-winx64 directory

[mysqld]
# Set the installation directory of mysql, that is, the location where you unzip the installation package basedir = D:/mysql/mysql-8.0.13-winx64
# Set the storage directory of mysql database data datadir = D:/mysql/mysql-8.0.13-winx64/data
# Set the port number port = 3306
# Maximum number of connections allowed max_connections = 200
# The number of connection failures allowed. This is to prevent someone from trying to attack the database system from this host max_connect_errors = 20

5. Register MySQL as a Windows system service

1. Use the administrator's privileges to open CMD (note the administrator's privileges), and enter the mysql decompression directory in CMD

2. Run the service installation command

mysqld install MySQL --defaults-file="%MYSQL_HOME%\my.ini"

After the installation is successful, it will prompt

Tip: If you want to remove the service, use the command: mysqld -remove

6. Enter the bin directory of mysql and enter the command to initialize the data folder (very important)

mysqld --initialize-insecure --user=mysql

7. Start the service

net start mysql

8. Modify the root account password

When the installation is just completed, the default password of the root account is empty. At this time, you can change the password to the specified password. For example: 123456

Open the database: mysql -uroot -p (When prompted to enter password, just press Enter. The default password is blank)

use mysql;
  ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';
  FLUSH PRIVILEGES;
  exit

Summarize

The above is a detailed example of the MYSQL8.0.13 free installation version configuration tutorial 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:
  • MySQL 8.0.13 installation and configuration method graphic tutorial
  • MySQL 8.0.13 download and installation tutorial with pictures and text
  • MySQL 8.0.13 decompression version installation and configuration method graphic tutorial
  • Solve the problem when setting the date to 0000-00-00 00:00:00 in MySQL 8.0.13
  • Problems and solutions when installing MySQL8.0.13 on Win10 system
  • About MySQL 8.0.13 zip package installation method
  • MySQL 8.0.13 installation and configuration method graphic tutorial under win10
  • MySQL 8.0.13 free installation version configuration tutorial under Windows environment
  • MySQL 8.0.13 installation and configuration method graphic tutorial under Windows 64 bit
  • MySQL 8.0.13 installation and configuration graphic tutorial

<<:  Use of js optional chaining operator

>>:  Summary of Node.js service Docker container application practice

Recommend

Linux configuration SSH password-free login "ssh-keygen" basic usage

Table of contents 1 What is SSH 2 Configure SSH p...

HTML uses canvas to implement bullet screen function

Introduction Recently, I needed to make a barrage...

How to create your own Docker image and upload it to Dockerhub

1. First register your own dockerhub account, reg...

In-depth understanding of the matching logic of Server and Location in Nginx

Server matching logic When Nginx decides which se...

Implementing a shopping cart with native JavaScript

This article shares the specific code of JavaScri...

Detailed tutorial on installing MySQL 5.7.20 on RedHat 6.5/CentOS 6.5

Download the rpm installation package MySQL offic...

The new version of Chrome browser settings allows cross-domain implementation

Preface Currently, the front-end solves cross-dom...

MySQL kill command usage guide

KILL [CONNECTION | QUERY] processlist_id In MySQL...

Several ways to submit HTML forms_PowerNode Java Academy

Method 1: Submit via the submit button <!DOCTY...

How to install redis in Docke

1. Search for redis image docker search redis 2. ...

IE conditional comments for XHTML

<br />Conditional comments are a feature uni...

Detailed explanation of Linux one-line command to process batch files

Preface The best method may not be the one you ca...

Detailed explanation of common usage of MySQL query conditions

This article uses examples to illustrate the comm...

W3C Tutorial (16): Other W3C Activities

This section provides an overview of some other i...