MySQL 8.0.13 download and installation tutorial with pictures and text

MySQL 8.0.13 download and installation tutorial with pictures and text

MySQL is the most commonly used database. You must install one on your computer to learn more. If you don’t understand something, you should practice writing more SQL statements.

First, go to the MySQL official website to download it, address: https://dev.mysql.com/downloads/mysql/

Select the version in the picture above to download the latest version of MySQL for Windows. After clicking it, it will not download immediately, but will jump to the page in the picture below. Just click No thanks, just start my download.

Next, start downloading. After the download is complete, you can unzip it to where you want. Generally speaking, it is best not to put too many things in the C drive, so I put it in the D drive. The picture below shows what it looks like after unzipping. You need to create the my.ini configuration file yourself. The my.ini in the picture is created by me

The contents of the my.ini file are as follows:

[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 basedir=D:\Program Files (x86)\MySQL\mysql-8.0.13-winx64
# Set the storage directory for the MySQL database data. MySQL 8+ does not require the following configuration, the system can generate it by itself, otherwise an error may be reported # datadir=D:\Users\sqldata
# Maximum number of connections allowed max_connections=20
# 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

After the MySQL configuration file is ready, you can start the database service. First, we run the command control symbol as an administrator. As shown in the figure, in win10, click the small circle in the lower left corner, enter cmd, right-click on the management prompt and select Run as administrator

After entering this page, cd to the MySQL installation directory.

Initialize the database:

mysqld --initialize --console

After initializing the database, a default password will appear as shown in the figure: 1SofNjpitN*h

Install:

mysqld install

Start the service:

net start mysql

The operation is shown as follows:


After starting the service, you start using the database. First, log in to the database.

Order:

mysql -h 主機名-u 用戶名-p

Parameter Description:

-h: specifies the MySQL host name that the client wants to log in to. This parameter can be omitted when logging in to the local machine (localhost or 127.0.0.1); -u: the login username; -p: tells the server that a password will be used to log in. If the username and password to be logged in are empty, this option can be ignored.

If we want to log in to the local MySQL database, we only need to enter the following command:

mysql -u root -p

Press Enter to confirm. If the installation is correct and MySQL is running, you will get the following response:

Enter password:

After successful login, as shown in the figure

The command prompt will then continue to display mysq> with a blinking cursor, waiting for input of commands. Type exit or quit to log out.

Please note that you need to change your password when you log in for the first time, otherwise you will get the error "You must reset your password using ALTER USER statement before executing this statement."

Change password command: alter alter user user() identified by "123456";

So we can use MySQL

Select database first

Command: use mysql; Next, you can operate on this database. You can use the show table; command to view all the tables under this database, etc. When writing MySQL commands, they must end with a semicolon.

This is the end of the MySQL installation tutorial. I will write more in-depth content later. Come on, everyone!

Summarize

The above is the detailed graphic and text explanation of MySQL 8.0.13 download and installation 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!

You may also be interested in:
  • MySQL 8.0.12 installation and environment variable configuration tutorial under win10
  • MySQL 5.6.23 Installation and Configuration Environment Variables Tutorial
  • How to configure environment variables after installing mysql5.7 database
  • The latest version of MySQL 8.0.22 download and installation super detailed tutorial (Windows 64 bit)
  • MySQL 8.0.22.0 download, installation and configuration method graphic tutorial
  • MySQL 8.0.22 download, installation and configuration method graphic tutorial
  • Detailed tutorial for downloading, installing and configuring MySQL 5.7.27
  • mysql8.0.20 download and installation and problems encountered (illustration and text)
  • MySQL 5.6.37 (zip) download installation configuration graphic tutorial
  • MySQL 5.7.18 Green Edition Download and Installation Tutorial
  • MySQL 8.0.15 download and installation detailed tutorial is a must for novices!
  • Summary of common problems in downloading and installing MySQL 5.7 on Win7 64-bit
  • Detailed graphic instructions for downloading and installing the unzipped version of MySQL 5.7.18 and starting the MySQL service
  • MySQL 5.7 Service Download and Installation Graphical Tutorial (Classic Edition)
  • MySQL 5.7.14 download, installation, configuration and use detailed tutorial
  • MySQL msi version download and installation detailed graphic tutorial for beginners

<<:  Embedded transplant docker error problem (summary)

>>:  Detailed explanation of the process of nginx obtaining the real source IP after passing through multiple layers of proxy

Recommend

Document Object Model (DOM) in JavaScript

Table of contents 1. What is DOM 2. Select elemen...

Building a selenium distributed environment based on docker

1. Download the image docker pull selenium/hub do...

Docker custom network implementation

Table of contents 1. Customize the network to rea...

Tutorial analysis of quick installation of mysql5.7 based on centos7

one. wget https://dev.mysql.com/get/mysql57-commu...

js simple and crude publish and subscribe sample code

What is Publish/Subscribe? Let me give you an exa...

react-beautiful-dnd implements component drag and drop function

Table of contents 1. Installation 2.APi 3. react-...

Brief analysis of centos 7 mysql-8.0.19-1.el7.x86_64.rpm-bundle.tar

Baidu Cloud Disk: Link: https://pan.baidu.com/s/1...

MySQL 8.0.17 installation and usage tutorial diagram

Written in front In the past and in the current p...

Detailed explanation of various HTTP return status codes

When a request is sent to your server to display ...

Steps for Vue to use Ref to get components across levels

Vue uses Ref to get component instances across le...

Use of Linux stat command

1. Command Introduction The stat command is used ...

How to use binlog for data recovery in MySQL

Preface Recently, a data was operated incorrectly...

Detailed explanation of Linux Namespace User

User namespace is a new namespace added in Linux ...

MySQL full-text search usage examples

Table of contents 1. Environmental Preparation 2....