MySQL 8.0.13 installation and configuration method graphic tutorial under Windows 64 bit

MySQL 8.0.13 installation and configuration method graphic tutorial under Windows 64 bit

This article shares the installation and configuration tutorial of MySQL 8.0.13 for your reference. The specific contents are as follows

First go to the official website to download and click on MySQL download

After downloading, unzip it

After decompression, it looks like this

Configure system environment variables

Copy the unzipped mysql to drive C or another disk

We add a mysql configuration to the system's environment variable path to point to the mysql bin directory

Configure the initialization file my.ini

There is no my.ini file in the unzipped directory. You can create it yourself in the my.ini file added to the installation root directory (create a new text file and change the file type to .ini), and write the basic configuration:

[mysqld]
# Set port 3306 port=3306
# Set the installation directory of MySQL basedir=C:\Program Files\MySQL
# Set the storage directory of MySQL database data datadir=C:\Program Files\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 UTF8
character-set-server=utf8
# The default storage engine that will be used when creating a new table default-storage-engine=INNODB
#Default authentication is done with the "mysql_native_password" plugin #mysql_native_password
default_authentication_plugin=mysql_native_password
[mysql]
# Set the default character set of the mysql client to default-character-set=utf8
[client]
# Set the default port used by the mysql client to connect to the server port = 3306
default-character-set=utf8 

Install MySQL

When installing, try to run CMD as an administrator, otherwise an error will be reported during installation, which will cause the installation to fail.

Enter the mysql directory directly into CMD

Execute the command in the warehouse directory of the MySQL installation directory:

mysqld --initialize --console

Notice! [Note][MY-010454][Server] Generating temporary password for root@localhost: 9P0gYk-? 0,kT where root@localhost:9P0gYk-? 0, kT is the initial password (excluding the first space). Before changing the password, you need to remember this password as it will be needed for subsequent logins. Copy the password and save it first!!!

Installation Services

Go to the C:\Windows\System32 directory and find cmd.exe, right click and run it as an administrator (this must be done!)

CD into the MySQL warehouse directory

Run the following command:

mysqld --install [service name] (the service name can be omitted and the default is mysql)

Success!

If this occurs

This means that the mysql service is still deleting it.

Use this command

MySQL deleted by SC

Install the service on execution

After the service is successfully installed, start the MySQL service through the command net start mysql

Okay, you can close the CMD window! It's no longer needed.

I believe everyone has Navicat, Little Dolphin and other database graphical tools

I also share a free installation of Navicat Premium 12, link address: link: https://pan.baidu.com/s/1n1q53hzNKd1OhIcdIDl2jg extraction code: cdk2, and share the official address

Our MySQL service is already started, so just open Navicat to connect

New MySQL connection

Do you remember the initial password after root@localhost: that I just asked you to copy? Now we need it, so copy and paste it!

Test it out!

MySQL is successfully installed and you can log in. Now it is time to change the password. Should I write SQL to change the password?

Too much trouble, too low.

Here is a simple method. Use Navicat to click on the connection just now, and we will be prompted to enter a new password.

OK, that’s it for this tutorial.

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:
  • 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 free installation version configuration tutorial under Windows environment
  • MySQL 8.0.13 installation and configuration graphic tutorial

<<:  Implementation of the Pycharm installation tutorial on Ubuntu 18.04

>>:  Vue implements upload component

Recommend

Detailed method of using goaccess to analyze nginx logs

Recently I want to use goaccess to analyze nginx ...

Solution to the problem that MySQL commands cannot be entered in Chinese

Find the problem Recently, when I connected to th...

Making a simple game engine with React Native

Table of contents Introduction Get started A brie...

Docker image compression and optimization operations

The reason why Docker is so popular nowadays is m...

A brief discussion on MySql views, triggers and stored procedures

view What is a view? What is the role of a view? ...

Detailed explanation of screen command usage in Linux

GUN Screen: Official website: http://www.gnu.org/...

Basic installation process of mysql5.7.19 under winx64 (details)

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

Illustration-style website homepage design New trend in website design

You can see that their visual effects are very bea...

Detailed explanation of MySQL 5.7.9 shutdown syntax example

mysql-5.7.9 finally provides shutdown syntax: Pre...

How to create a MySQL master-slave database using Docker on MacOS

1. Pull the MySQL image Get the latest MySQL imag...

How to deploy nextcloud network disk using docker

NextCloud You can share any files or folders on y...

A brief discussion on using virtual lists to optimize tables in el-table

Table of contents Preface Solution Specific imple...