MySQL 8.0.18 installation and configuration graphic tutorial

MySQL 8.0.18 installation and configuration graphic tutorial

Learning objectives: Learn to use Windows system to install MySQL database , for your reference, the specific content is as follows

1. Open the browser and enter the download address of the SQL official website: Download link

2. After downloading the MySQL software package, create a web folder in the C drive, unzip the MySQL file to the web folder, and create a my.ini file in the mysql directory.

3. Open the my.ini configuration file and enter the following content

[client]
#Set the default character set of MySQL client default-character-set=utf8

[mysqld]
#Set port 3306 port = 3306
#Set the installation directory of mysql basedir=C:\web\mysql-8.0.18
#Set the data storage directory of MySQL database. MySQL 8+ does not need the following configuration, the system will automatically generate #datadir=C:\web\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 

4. Start the MySQL database (open the cmd command tool as an administrator)

5. Use exit or quit to exit the database

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.22 installation and configuration method graphic tutorial
  • MySQL 8.0.20 Installation Tutorial with Pictures and Text (Windows 64-bit)
  • MySQL 8.0.20 installation tutorial and detailed tutorial on installation issues
  • MySQL 8.0.20 installation and configuration detailed tutorial
  • Detailed tutorial on installing mysql-8.0.20 under Linux
  • mysql 8.0.20 winx64.zip compressed version installation and configuration method graphic tutorial
  • MySQL 8.0.20 winx64 installation and configuration method graphic tutorial
  • MySQL 8.0.19 installation and configuration method graphic tutorial
  • MySQL 8.0.19 installation and configuration tutorial under Windows 10
  • MySQL 8.0.22 installation and configuration graphic tutorial

<<:  A brief discussion on the role of Vue3 defineComponent

>>:  Docker /var/lib/docker/aufs/mnt directory cleaning method

Recommend

How to call the interrupted system in Linux

Preface Slow system calls refer to system calls t...

Implementation of select multiple data loading optimization in Element

Table of contents Scenario Code Implementation Su...

A detailed introduction to the netstat command in Linux

Table of contents 1. Introduction 2. Output Infor...

Detailed explanation of scheduled tasks for ordinary users in Linux

Preface Ordinary users define crontab scheduled t...

How to automatically number the results of MYSQL query data

Preface In fact, I have never encountered this ki...

Tomcat components illustrate the architectural evolution of a web server

1. Who is tomcat? 2. What can tomcat do? Tomcat i...

Configure VIM as a C++ development editor in Ubuntu

1. Copy the configuration file to the user enviro...

How to quickly log in to MySQL database without password under Shell

background When we want to log in to the MySQL da...

Centos7.3 How to install and deploy Nginx and configure https

Installation Environment 1. gcc installation To i...

HTML tutorial, easy to learn HTML language

1. <body background=image file name bgcolor=co...

Practice of el-cascader cascade selector in elementui

Table of contents 1. Effect 2. Main code 1. Effec...

How to view the creation time of files in Linux

1. Introduction Whether the creation time of a fi...

How to prohibit vsftpd users from logging in through ssh

Preface vsftp is an easy-to-use and secure ftp se...

Recommend some useful learning materials for newbies in web design

Many people also asked me what books I read when ...

How to obtain and use time in Linux system

There are two types of Linux system time. (1) Cal...