MySQL 8.0.13 manual installation tutorial

MySQL 8.0.13 manual installation tutorial

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

1. Steps

1. Download MySQL

Download

Select Downloads-->Community-->MySQL Community Server, then scroll to the bottom of the page and click "Download".

You will usually be prompted to log in at this point. Ignore it and just click "No thanks, just start my download." at the bottom to download directly.

We choose Generally Available (GA) Release to download. GA refers to the general version of the software, generally referring to the officially released version.

2. Unzip to a path, for example: D:\Mysql

3. Set environment variables:

Add ;D:\Mysql\bin after the path;

4. Create a new configuration file my.ini in the root directory and edit the file

[mysqld]
#Bind IPv4
bind-address = 0.0.0.0
 
# Set the installation directory of mysql, that is, the location where you unzip the installation package basedir = D:/Mysql
 
# Set the storage directory of mysql database data datadir = D:/Mysql/data
 
# Set the port number port = 3306
 
# Maximum number of connections allowed max_connections = 200
 
# Set the character set to utf8
loose-default-character-set = utf8
character-set-server = utf8
 
# Enable query cache explicit_defaults_for_timestamp = true
 
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
 
[client] 
#Set the client character set port=3306
loose-default-character-set = utf8
 
[WinMySQLadmin] 
Server = D:/Mysql/bin/mysqld.exe 

5. Register mysql as a Windows system service

5.1 Open CMD with administrator privileges (note administrator privileges)

5.2 Run the service installation command

mysqld install MySQL --defaults-file="D:/Mysql/my.ini"

After the installation is successful, it will prompt that the installation is successful. Note: If you want to remove the service, use the command: mysqld -remove
If msvcr120.dll is missing, install vcredist_x64.exe

6. Start the mysql service

Note: The MySQL service cannot be started normally at this time, because version 5.7.18 does not come with a data folder.
You need to use commands to create the data folder and the default database

6.1 Create Command

mysqld --initialize-insecure --user=mysql

6.2 The command to start the service is

net start mysql

6.3 Open Management Tools - Services and find the MySQL service. Start the service by right-clicking and selecting Start or directly clicking Start on the left.

7. Change the root account password (the following instructions need to be entered one by one in the console, and some have semicolons)

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.

Open Database

mysql -uroot -p (Prompt Enter password, just press Enter, the default password is empty)
use mysql;
UPDATE user SET authentication_string = PASSWORD('root') WHERE user = 'root';
FLUSH PRIVILEGES;

exit

At this point, the password change is complete.

At this point, the MySQL database as a server has been installed!

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 free installation version configuration tutorial under Windows environment
  • MYSQL8.0.13 free installation version configuration tutorial example detailed explanation
  • MySQL 8.0.13 download and installation tutorial with pictures and text
  • MySQL 8.0.13 installation and configuration method graphic tutorial under win10
  • MySQL 8.0.13 installation and configuration method graphic tutorial
  • MySQL 8.0.13 decompression version installation and configuration method graphic tutorial
  • MySQL 8.0.13 installation and configuration tutorial under CentOS7.3
  • MySQL 8.0.13 installation and configuration method graphic tutorial under Windows 64 bit
  • mysql8.0.0 winx64.zip decompression version installation and configuration tutorial
  • Ubuntu Server 16.04 MySQL 8.0 installation and configuration graphic tutorial
  • MySQL 8.0.13 decompression version installation graphic tutorial under Windows

<<:  How to specify parameter variables externally in docker

>>:  How to optimize logic judgment code in JavaScript

Recommend

How to choose between MySQL CHAR and VARCHAR

Table of contents VARCHAR and CHAR Types Conclusi...

Docker's flexible implementation of building a PHP environment

Use Docker to build a flexible online PHP environ...

Vite2.0 Pitfalls

Table of contents Vite project build optimization...

A brief discussion on two methods to solve space-evenly compatibility issues

Since its launch in 2009, flex has been supported...

In-depth understanding of CSS @font-face performance optimization

This article mainly introduces common strategies ...

In-depth analysis of MySQL execution plans

Preface In the previous interview process, when a...

Detailed explanation of CentOS configuration of Nginx official Yum source

I have been using the CentOS purchased by Alibaba...

The pitfalls encountered when learning Vue.js

Table of contents Class void pointing ES6 Arrow F...

Analyze the usage and principles of Vue's provide and inject

First, let's talk about why we use provide/in...

Summary of the unknown usage of "!" in Linux

Preface In fact, the humble "!" has man...

vmware virtual machine ubuntu18.04 installation tutorial

Installation Steps 1. Create a virtual machine 2....