Move MySQL database to another disk under Windows

Move MySQL database to another disk under Windows

Preface

Today I installed MySQL and found that the database storage was installed on the C drive by default. Since the C drive has limited space, I wanted to move it to another drive.

Here are my steps

1. Start

2. Enter your password

 

3. Enter the command to query where the data is stored

show global variables like "%datadir%";

4. Move the Data file under C:\ProgramData\MySQL\MySQL Server 8.0 to the desired location

5. Modify the my.ini file under C:\ProgramData\MySQL\MySQL Server 8.0

Find datadir, add # to the original address and comment it out, then write the address of the data file you moved

6. Open Computer Management, find the MySQL service, and restart it

7. Check the data storage location again

show global variables like "%datadir%";

If the data position after the move is displayed, it means it is successful.

This is the end of this article about moving MySQL database to another disk under Windows. For more relevant MySQL database movement content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to move mysql5.7.19 data storage location in Centos7

<<:  Mobile web screen adaptation (rem)

>>:  CSS to achieve fast and cool shaking animation effect

Recommend

How to build a SOLO personal blog from scratch using Docker

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

How does MySQL achieve master-slave synchronization?

Master-slave synchronization, also called master-...

MySQL cross-table query and cross-table update

Friends who have some basic knowledge of SQL must...

A brief analysis of mysql index

A database index is a data structure whose purpos...

A very detailed explanation of the Linux DHCP service

Table of contents 1. DHCP Service (Dynamic Host C...

Simple encapsulation of axios and example code for use

Preface Recently, when I was building a project, ...

An IE crash bug

Copy code The code is as follows: <style type=...

WeChat applet implements the snake game

This article shares the specific code of the WeCh...

How to install kibana tokenizer inside docker container

step: 1. Create a new docker-compose.yml file in ...

Understand the use of CSS3's all attribute

1. Compatibility As shown below: The compatibilit...

What to do if you forget your mysql password

Solution to forgetting MySQL password: [root@loca...

ElementUI implements cascading selector

This article example shares the specific code of ...

Three BOM objects in JavaScript

Table of contents 1. Location Object 1. URL 2. Pr...

JS Asynchronous Stack Tracing: Why await is better than Promise

Overview The fundamental difference between async...