MySQL full backup and quick recovery methods

MySQL full backup and quick recovery methods

A simple MySQL full backup script that backs up the data for the last 15 days.

Backup

#Back up the mysql database every day (save the data script for the last 15 days)

DATE=$(date +%Y%m%d)

/home/cuixiaohuan/lamp/mysql5/bin/mysqldump -uuser -ppassword need_db > /home/cuixiaohuan/bak_sql/mysql_dbxx_$DATE.sql;

find /home/cuixiaohuan/bak_sql/ -mtime +15 -name '*.sql' -exec rm -rf {} \;

recover

mysql data import

drop databases need_db;

create databases need_db;

Import data: Encoding must be set for recovery

./mysql -uroot -p --default-character-set=utf8 need_db < xx.sql

Knowledge point expansion:

Backup and restore using mysqldump

1. Backup principle

The backup principle of mysqldump is relatively simple. First, find out the table structure that needs to be backed up and generate a create statement in a text file; then convert all data records in the table into an insert statement; these statements can be used to create a table and insert data.

2. Back up a database

Basic syntax:

>>> mysqldump -u username -p dbname table1 table2 ... > BackupName.sql

Example description:

mysqldump -u root -p test person > /tmp/backup.sql

3. Back up multiple databases

Basic syntax:

mysqldump -u username -p --databases dbname2 dbname2 > BackupName.sql

Example description:

mysqldump -u root -p --databases test mysql > /tmp/backup.sql

4. Back up all databases

Basic syntax:

mysqldump -u username -p -all-databases > BackupName.sql

Example description:

mysqldump -u -root -p -all-databases > /tmp/all.sql

5. Data Recovery

Basic syntax:

mysql -u root -p [dbname] < backup.sql

Example description:

mysql -u root -p < /tmp/backup.sql

The above is the detailed content of the method of MySQL full backup and quick recovery. For more information about MySQL simple full backup and quick recovery methods, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed steps for configuring mysql8.0.20 with binlog2sql and simple backup and recovery
  • A brief analysis of MySQL backup and recovery
  • Detailed explanation of mysql backup and recovery
  • MySQL database backup and recovery implementation code
  • Analysis of MySQL data backup and recovery implementation methods
  • Shell script to implement mysql scheduled backup, deletion and recovery functions
  • How to restore a database and a table from a MySQL full database backup
  • How to restore single table data using MySQL full database backup data
  • MySQL incremental backup and breakpoint recovery script example
  • C# implements MySQL command line backup and recovery
  • MySQL backup and recovery design ideas

<<:  Detailed explanation of the differences between var, let and const in JavaScript es6

>>:  Detailed tutorial on how to connect to a remote server Docker to deploy a Spring Boot project in IDEA

Recommend

Batch replace part of the data of a field in Mysql (recommended)

Batch replace part of the data of a field in MYSQ...

Example code of how to implement pivot table in MySQL/MariaDB

The previous article introduced several methods f...

Website front-end performance optimization: JavaScript and CSS

I have read an article written by the Yahoo team ...

Mysql database master-slave separation example code

introduce Setting up read-write separation for th...

How to set the text in the select drop-down menu to scroll left and right

I want to use the marquee tag to set the font scro...

Complete step-by-step record of MySQL 8.0.26 installation and uninstallation

Table of contents Preface 1. Installation 1. Down...

How to process blob data in MySQL

The specific code is as follows: package epoint.m...

Specific use of exception filter Exceptionfilter in nestjs

Speaking of Nestjs exception filter, we have to m...

MySQL 5.7.18 Installer installation download graphic tutorial

This article records the detailed installation tu...

Detailed explanation on how to deploy H5 games to nginx server

On the road to self-learning game development, th...

Linux remote control windows system program (three methods)

Sometimes we need to remotely run programs on the...

Detailed explanation of MySQL user rights verification and management methods

This article uses examples to illustrate how to v...

HTML line spacing setting methods and problems

To set the line spacing of <p></p>, us...