MySQL 8.0.16 compressed package installation and configuration method graphic tutorial

MySQL 8.0.16 compressed package installation and configuration method graphic tutorial

This article shares the installation and configuration method of MySQL 8.0.16 compressed package for your reference. The specific content is as follows

Operating environment: Windows 10 x64

1. Download the zip installation package:

MySQL8.0 For Windows zip package download address:, you don’t need to log in after entering the page. Then click “No thanks, just start my download.” at the bottom to start downloading.

2. Installation

2.1 Unzip the zip package to the installation directory

I unzipped it in E:\SQL\MySQL\mysql-8.0.16-winx64

ps: After decompression, the data folder and my.ini configuration file are missing.

Add the unzipped bin path to the environment variable path

2.2 Configure the initialization my.ini file

Note: Be sure to open the folder extension

Add my.ini 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=E:\SQL\MySQL\mysql-8.0.16-winx64 # Change according to your own address # Set the storage directory of MySQL database datadatadir=E:\SQL\MySQL\mysql-8.0.16-winx64\data # Change according to your own address # Allow the maximum number of connections 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 = 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
 
# By default, the "mysql_native_password" plug-in is used for authentication. 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

2.3 Create a new data directory


3. Install MySQL

During installation, you must run cmd as an administrator, otherwise an error will be reported during installation, resulting in installation failure.

3.1 Initialize the database

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

mysqld --initialize --console
After the execution is complete, the initial default password of the root user will be printed

The red one is the password. Be sure to copy it to another place for later use, otherwise you will have to start over.

3.2 Installation Service

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

mysqld --install [service name] # The service name behind it can be omitted, the default name is mysql.

After the installation is complete:

Start the MySQL service by running the command net start mysql

Stop the MySQL service by running the command net stop mysql

If you need to uninstall the previous MySQL, you can uninstall the MySQL service through the command sc delete MySQL / mysqld -remove

4. Change your password

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

mysql -u root -p

At this time, you will be prompted to enter a password. Remember the password you entered during the installation in step 3.1 above. Fill it in to log in successfully and enter the MySQL command mode.

If you insert such an error:

Enter password: ************
ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost' (10061)

Win + r, enter services.msc to start the mysql service

The installation is now complete;

Execute the command in MySQL:

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'new password';

Change the password. Pay attention to the ";" at the end of the command. This is the syntax of MySQL.

If the operation is correct, you will be prompted with "Query OK, 0 rows affected (0.01 sec)"

Type '\t' to exit mysql, or type help to select help.

PS: Here we go, this is always done with the console, there is a graphical interface

Go to Baidu to download Navicat, everything can be solved

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.18 hash join test (recommended)
  • MySQL 8.0.18 stable version released! Hash Join is here as expected
  • MySQL 8.0.17 installation and configuration method graphic tutorial
  • MySQL 8.0.17 installation and usage tutorial diagram
  • MySQL 8.0.17 installation and configuration graphic tutorial
  • MySQL 8.0.17 installation graphic tutorial
  • MySQL 8.0.16 installation and configuration method graphic tutorial under Windows
  • mysql installer community 8.0.16.0 installation and configuration graphic tutorial
  • MySQL 8.0.16 installation and configuration tutorial under Windows 10
  • MySQL 8.0.18 installation and configuration method graphic tutorial

<<:  Detailed explanation of Linux tee command usage

>>:  Writing a shell script in Ubuntu to start automatically at boot (recommended)

Recommend

A quick guide to MySQL indexes

The establishment of MySQL index is very importan...

Vue implements various ideas for detecting sensitive word filtering components

Table of contents Written in front Requirements A...

MySQL 5.7.21 Installer Installation Graphic Tutorial under Windows 10

Install MySQL and keep a note. I don’t know if it...

How to install mysql5.6 in docker under ubuntu

1. Install mysql5.6 docker run mysql:5.6 Wait unt...

A brief analysis of how MySQL implements transaction isolation

Table of contents 1. Introduction 2. RC and RR is...

C# implements MySQL command line backup and recovery

There are many tools available for backing up MyS...

html option disable select select disable option example

Copy code The code is as follows: <select> ...

How to enable MySQL remote connection

For security reasons, MySql-Server only allows th...

JS function call, apply and bind super detailed method

Table of contents JS function call, apply and bin...

The latest graphic tutorial of mysql 8.0.16 winx64 installation under win10

In order to download this database, it takes a lo...

Network management and network isolation implementation of Docker containers

1. Docker network management 1. Docker container ...

Getting Started: A brief introduction to HTML's basic tags and attributes

HTML is made up of tags and attributes, which are...