MySQL database backup and recovery implementation code

MySQL database backup and recovery implementation code

Database backup

#grammar:
# mysqldump -h server-u username-p password database name> backup file.sql

#Example:
#Single database backup mysqldump -uroot -p123 db1 > db1.sql
mysqldump -uroot -p123 db1 table1 table2 > db1-table1-table2.sql

#Multi-database backup mysqldump -uroot -p123 --databases db1 db2 mysql db3 > db1_db2_mysql_db3.sql

#Backup all librariesmysqldump -uroot -p123 --all-databases > all.sql

Data Recovery

#Method 1:
[root@egon backup]# mysql -uroot -p123 < /backup/all.sql

#Method 2:
mysql> use db1;
mysql> SET SQL_LOG_BIN=0; #Turn off binary logging, only effective for the current session mysql> source /root/db1.sql

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:
  • How to restore data using binlog in mysql5.7
  • MySQL restores data through binlog
  • MySQL uses frm files and ibd files to restore table data
  • MySQL uses binlog logs to implement data recovery
  • Implementation of mysql using mysqlbinlog command to restore accidentally deleted data
  • Two methods of restoring MySQL data
  • MySQL uses mysqldump+binlog to completely restore the deleted database principle analysis
  • Analysis of MySQL data backup and recovery implementation methods
  • MySQL Binlog Data Recovery: Detailed Explanation of Accidentally Deleting a Database
  • Summary of various methods of MySQL data recovery

<<:  Detailed tutorial on docker-compose deployment and configuration of Jenkins

>>:  How to install Nginx in a specified location in Centos system

Recommend

Should I use Bootstrap or jQuery Mobile for mobile web wap

Solving the problem Bootstrap is a CSS framework ...

Detailed explanation of angular parent-child component communication

Table of contents APIs used Simple Example person...

Summary of 7 pitfalls when using react

Table of contents 1. Component bloat 2. Change th...

Solve nginx "504 Gateway Time-out" error

Students who make websites often find that some n...

Implementation of new issues of CSS3 selectors

Table of contents Basic Selector Extensions Attri...

The implementation principle of Tomcat correcting the JDK native thread pool bug

To improve processing power and concurrency, Web ...

The front-end page pop-up mask prohibits page scrolling

A problem that front-end developers often encount...

Ubuntu installation Matlab2020b detailed tutorial and resources

Table of contents 1. Resource files 2. Installati...

Mini Program to Implement Calculator Function

This article example shares the specific code of ...

Write a dynamic clock on a web page in HTML

Use HTML to write a dynamic web clock. The code i...

MySQL 5.7.27 installation and configuration method graphic tutorial

The installation tutorial of MySQL 5.7.27 is reco...

A brief discussion of 3 new features worth noting in TypeScript 3.7

Table of contents Preface Optional Chaining Nulli...

Implementation process of nginx high availability cluster

This article mainly introduces the implementation...