MySQL 8.0.13 free installation version configuration tutorial under Windows environment

MySQL 8.0.13 free installation version configuration tutorial under Windows environment

Table of contents

Download the compressed file

Address: https://dev.mysql.com/downloads/mysql/

insert image description here

Unzip the zip file and create the my.ini file

Directory after decompression:

basedir=D:\mysql-8.0.13-winx64

Data Directory:

datadir=D:\mysql-8.0.13-winx64\data

Create a my.ini file with the following contents:

[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 to basedir=D:\mysql-8.0.13-winx64
# Set the storage directory of mysql database data datadir=D:\mysql-8.0.13-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

Configuring environment variables

Add in path

insert image description here

Run the command prompt with administrator privileges

Enter the decompressed directory and execute the following commands in sequence:

bin\mysqld --defaults-file=my.ini --initialize-insecure

insert image description here

bin\mysqld --install

insert image description here

Enter the bin directory and execute the command

net start mysql

insert image description here

Set password

Enter the bin directory and execute the command

You will be prompted to enter a password. Press Enter directly without entering any password.

mysql -u root -p

insert image description here

Update password ('password' can be set according to personal habits, such as '123456', etc.)

use mysql;
select host,user,authentication_string,plugin from user;
alter user 'root'@'localhost' identified with mysql_native_password by 'password'; 

insert image description here

Setting up remote access permissions

update user set host='%' where user='root';
flush privileges;
exit; 

insert image description here

Restart the service and test

Execute the command in the bin directory

net stop mysql
net start mysql

Summarize

The above is the configuration tutorial of MySQL 8.0.13 free installation version under Windows environment 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
  • MYSQL8.0.13 free installation version configuration tutorial example detailed explanation
  • MySQL 8.0.13 installation and configuration method graphic tutorial under Windows 64 bit
  • MySQL 8.0.13 installation and configuration graphic tutorial

<<:  How many common loops do you know about array traversal in JS?

>>:  Detailed explanation of how to build phalcon environment under nginx server on centos7 system

Recommend

Solution to forgetting mysql password under linux

The problem is as follows: I entered the command ...

Vue implements multi-grid input box on mobile terminal

Recently, the company has put forward a requireme...

MySQL export of entire or single table data

Export a single table mysqldump -u user -p dbname...

Will Update in a Mysql transaction lock the table?

Two cases: 1. With index 2. Without index Prerequ...

15 Linux Command Aliases That Will Save You Time

Preface In the process of managing and maintainin...

Summary of methods to include file contents in HTML files

In the forum, netizens often ask, can I read the ...

How to use @media in mobile adaptive styles

General mobile phone style: @media all and (orien...

js implements array flattening

Table of contents How to flatten an array 1. Usin...

Understanding v-bind in vue

Table of contents 1. Analysis of key source code ...

Script example for starting and stopping spring boot projects in Linux

There are three ways to start a springboot projec...

MySQL 8.0.11 MSI version installation and configuration graphic tutorial

This article shares the installation and configur...