Implementation of restoring data by directly copying files in the data directory in mysql

Implementation of restoring data by directly copying files in the data directory in mysql

mysql copies the files in the data directory to restore the data

Background: MySQL crashed and could not be started. I decided to rebuild the environment, but I forgot to back up the database test data. The MySQL data directory survived.

operate:

1. Copy the folder of the test database (including .frm .ibd and other files)

2. Restart MySQL

When viewing a table in the database through Navicat, the result shows "Table 'xxx' does not exist"

3. After searching on Google and Baidu, I found the innodb table

Directly copying the file is not usable, and it will prompt that the table does not exist. When copying, the ibdata1 file in the data directory should be copied together, and the ib_logfile0, ib_logfile1 and other files should be deleted.

mysql migrates the database by copying data files

1. Shut down the service

Run cmd as an administrator and execute the following command:

net stop mysql

2. Copy data files

Copy the database file of the data file (no need to copy mysql, performance_schema, sys), and be sure to copy the ibdata1 file

這里寫圖片描述

3. Import files

Put the copied file into the data file of the destination database

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Springboot uses spring-data-jpa to operate MySQL database
  • DataGrip connects to Mysql and creates a database
  • Springboot configures mysql database spring.datasource.url error solution
  • MySQL database Load Data multiple uses
  • Python pymysql link database query results converted to Dataframe instance
  • MySQL database data basic operations

<<:  Search optimization knowledge to pay attention to in web design

>>:  Three ways to achieve background blur in CSS3 (summary)

Recommend

Summary of essential knowledge points for MySQL query optimization

Preface Query optimization is not something that ...

React native ScrollView pull down refresh effect

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

Some suggestions for HTML beginners and novices, experts can ignore them

Feelings: I am a backend developer. Sometimes when...

Tutorial on installing JDK Tomcat MySQL on Linux (remote access using Mac)

One environment Alibaba Cloud Server: CentOS 7.4 ...

MySQL UNION operator basic knowledge points

MySQL UNION Operator This tutorial introduces the...

CSS achieves the effect of two elements blending (sticky effect)

I remember that a few years ago, there was an int...

Specific method to add foreign key constraints in mysql

The operating environment of this tutorial: Windo...

Introduction to the use of MySQL official performance testing tool mysqlslap

Table of contents Introduction Instructions Actua...

Detailed tutorial on distributed operation of jmeter in docker environment

1. Build the basic image of jmeter The Dockerfile...

The best 9 foreign free picture material websites

It is difficult to find good image material websi...

Briefly understand the two common methods of creating files in Linux terminal

We all know that we can use the mkdir command to ...

Native js to implement 2048 game

2048 mini game, for your reference, the specific ...

Summarize the common properties of BigIn functions in JavaScript

Table of contents 1. Overview 2. Attributes 1. Ma...