Mysql backup multiple database code examples

Mysql backup multiple database code examples

This article mainly introduces the Mysql backup multiple database code examples. The sample code is introduced in great detail in this article, which has a certain reference value for everyone's study or work. Friends in need can refer to it.

Backup data script

#!/bin/bash

# date is a command in Linux date [parameter] [+format]
time=`date +%Y_%m_%d_%H_%M_%S`
# Backup output path backupdir=/home/backup/
# Backup file path filedir=/home/my_app/files/
# Use sql statement to retrieve all databases starting with 'test'. Pass the command to the mysql client through the pipeline; -N means not to output the header and end of the result, and the result is a pure data set databases=(`echo 'show databases like "test%";' | mysql -N -uroot -proot`)
# Pass the output file of mysqldump to gzip through the pipe for compression. gzip cannot save the original file and cannot compress the directory. mysqldump -uroot -proot --databases ${databases[*]} | gzip > $backupdir/$time.sql.gz
# Back up files. zip [compressed output file] [compressed file]
zip -r $backupdir/$time.zip $filedir
# Delete the backup file 7 days ago find $backupdir -mtime +7 -name "*" -exec rm -rf {} \;

Then set crontab to run the backup script every morning

Data Recovery

mysql -u root -p DATABESE_NAME < dump.sql

Or connect to mysql client

mysql> source dump.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:
  • Notes on the MySQL database backup process
  • Shell script to backup MySQL database data regularly and retain it for a specified time
  • Mysql database scheduled backup script sharing
  • How to implement scheduled backup of CentOS MySQL database
  • MySQL database backup and recovery implementation code
  • MySQL database introduction: detailed explanation of database backup operation
  • Analysis of MySQL data backup and recovery implementation methods
  • MySQL scheduled database backup operation example
  • Summary of various implementation methods of mysql database backup
  • Linux implements scheduled backup of MySQL database and deletes backup files older than 30 days
  • Linux regularly backs up the MySQL database and deletes previous backup files (recommended)
  • Selection and thinking of MySQL data backup method

<<:  The latest super detailed graphic tutorial of installing Kali Linux on virtual machine VMware

>>:  Analysis of the principle and creation method of Mysql temporary table

Recommend

How to set up swap partition SWAP in Linux 7.7

The Swap partition of the Linux system, that is, ...

Two ways to remove the 30-second ad code from Youku video

I believe everyone has had this feeling: watching ...

Summary of some common configurations and techniques of Nginx

Preface This article lists several common, practi...

Detailed explanation of MySQL Truncate usage

Table of contents MySQL Truncate usage 1. Truncat...

Understand the principles of MySQL persistence and rollback in one article

Table of contents redo log Why do we need to upda...

About the IE label LI text wrapping problem

I struggled with this for a long time, and after s...

MySQL uninstall and install graphic tutorial under Linux

This is my first time writing a blog. I have been...

How to execute Linux shell commands in Docker

To execute a shell command in Docker, you need to...

About if contains comma expression in JavaScript

Sometimes you will see English commas ",&quo...

Installation, activation and configuration of ModSecurity under Apache

ModSecurity is a powerful packet filtering tool t...

Axios cancel request and avoid duplicate requests

Table of contents origin status quo Cancel reques...

Usage of the target attribute of the html tag a

1: If you use the tag <a> to link to a page,...

Vue handwriting loading animation project

When the page is not responding, displaying the l...