MySQL 8.0.11 compressed version installation tutorial

MySQL 8.0.11 compressed version installation tutorial

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

1. Configure environment variables

Usually other tutorials configure environment variables later, which may easily lead to the error "mysqld is not recognized as an internal or external command, operable program or batch file." So we add the environment variables first.

mysql8.0.11 download address

1. Find the system environment variable settings


Create a new MYSQL_HOME variable and set its value to: F:\mysql-8.0.11 (your own decompression directory, you can use the 60 directory);

Edit the path system variable and add %MYSQL_HOME%\bin (this can be copied directly) to the path variable.

2. Install MySQL

Open cmd (command prompt) with administrator privileges, switch disks first, then jump to the directory

Installation command mysqld Install (if you do not have administrator privileges, you may get an error when opening cmd)

3. Start MySQL

First, execute in the mysql unzip bin directory

mysqld --initialize-insecure --user=mysql (old versions do not need this command)

Start mysql

net start mysql (if you do not execute the previous step, it will prompt that it cannot be started and there will be no error)

4. Enter mysql

mysql -u root -p, the password is empty by default.

5. Graphical interface

Navicat is recommended

Wonderful topic sharing: Installation tutorials for different versions of MySQL Installation tutorials for MySQL 5.7 versions Installation tutorials for MySQL 5.6 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:
  • Tutorial on installing the latest MySQL 8.0.18 using a compressed package on Win10 64-bit (with pictures and text)
  • MySQL 8.0.11 compressed version installation and configuration method graphic tutorial
  • MySQL compressed package installation and configuration method graphic tutorial
  • Complete steps to reset the root user password in mysql8
  • How to reset the root password in mysql8.0.12
  • Mysql 8.0 installation and password reset issues
  • How to reset MySQL root password under Windows
  • Detailed method for forgetting the root password or resetting the password in Mysql 5.7
  • How to reset the MySQL password after forgetting it in Mac operating system
  • What should I do if I forget my MySQL password? How to reset MySQL root password
  • Pitfalls encountered when installing MySQL 8.0.18 compressed package and resetting forgotten passwords

<<:  A brief analysis of the examples and differences of using nohup and screen to run background tasks in Linux

>>:  Gallery function implemented by native Js

Recommend

Specific implementation methods of MySQL table sharding and partitioning

Vertical table Vertical table splitting means spl...

Docker primary network port mapping configuration

Port Mapping Before the Docker container is start...

jQuery implements simple pop-up window effect

This article shares the specific code of jQuery t...

InnoDB engine redo file maintenance method

If you want to adjust the size and number of Inno...

Vue uses echarts to draw an organizational chart

Yesterday, I wrote a blog about the circular prog...

Summary of the use of vue Watch and Computed

Table of contents 01. Listener watch (1) Function...

Detailed explanation of DOM DIFF algorithm in react application

Table of contents Preface What is VirtualDOM? Rea...

HTML displays ellipsis beyond the text... implemented through text-overflow

You need to apply CSS to div or span at the same t...

Server stress testing concepts and methods (TPS/concurrency)

Table of contents 1 Indicators in stress testing ...

Detailed explanation of map overlay in openlayers6

1. Overlay Overview Overlay means covering, as th...

MySQL 5.7.18 zip version installation tutorial

The mysql 5.7.18 zip version of MySQL is not like...

Use of Linux xargs command

1. Function: xargs can convert the data separated...

JavaScript implements product details of e-commerce platform

This article shares a common example of viewing p...

Implementation of formatting partitions and mounting in Centos7

Linux often encounters situations such as adding ...