How to implement scheduled backup of MySQL database

How to implement scheduled backup of MySQL database

1. Create a shell script

 vim backupdb.sh
 Create the script as follows:
 #!/bin/sh
 db_user="root"
 db_passwd="123456"
 db_name="userdb"
 name="$(date +"%Y%m%d%H%M%S")" 
 /usr/bin/mysqldump -u$db_user -p$db_passwd $db_name >>/home/backup/$name.sql
 illustrate:
 /usr/bin/mysqldump: the path of the mysqldump backup tool in the mysql database installation directory dbname: the name of the database to be backed up /home/backup/$name.sql: the backup file output location, which can be set according to the situation

2. Add execution permissions to the shell script

chmod +x backupdb.sh

3. Add a scheduled task to the script

crontab -e
Enter the name of the previous line to edit the scheduled task, and finally add the following content 00 01 * * * /bin/sh /usr/local/mysql/backupdb.sh
The above scheduled task means that the automatic backup script will be executed at 1:00 a.m. every day to perform a scheduled backup of the MySQL database.

Description of crontab file:

In the crontab file created by the user, each line represents a scheduled task, and each field in each line represents a setting. Its format is divided into six fields per line. The first five fields are time setting fields, and the sixth field is the command field to be executed.

The format is as follows: minute hour day month week command

Parameter Description:

minute: represents the minute, which can be any integer from 0 to 59.
hour: represents the hour, which can be any integer from 0 to 23.
day: represents the date, which can be any integer from 1 to 31.
month: represents the month, which can be any integer from 1 to 12.
week: represents the day of the week, which can be any integer from 0 to 7, where 0 or 7 represents Sunday.
command: The command to be executed, which can be a Linux system command or a script file written by yourself.

Summarize

The above is the scheduled backup of MySQL database introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • How to automatically back up the mysql database regularly
  • SQL server automatic database backup method
  • The best way to automatically backup the mysql database (windows server)
  • Complete steps to set up an automatic backup strategy for SQL Server database
  • Detailed explanation of several methods of MySQL automatic backup and recovery (graphic tutorial)
  • Manual and scheduled backup steps for MySQL database

<<:  How to implement remote access control in Centos 7.4

>>:  Three solutions for sub-functions accessing external variables in JavaScript

Recommend

Alibaba Cloud applies for a free SSL certificate (https) from Cloud Shield

Because the project needs to use https service, I...

MySQL 5.6.36 Windows x64 version installation tutorial detailed

1. Target environment Windows 7 64-bit 2. Materia...

Super detailed MySQL8.0.22 installation and configuration tutorial

Hello everyone, today we are going to learn about...

3 functions of toString method in js

Table of contents 1. Three functions of toString ...

In-depth understanding of the seven communication methods of Vue components

Table of contents 1. props/$emit Introduction Cod...

Using zabbix to monitor the ogg process (Windows platform)

This article introduces how to monitor the ogg pr...

Detailed explanation of the use of DockerHub image repository

Previously, the images we used were all pulled fr...

How to introduce scss into react project

First download the dependencies yarn add sass-loa...

Practical tutorial on modifying MySQL character set

Preface: In MySQL, the system supports many chara...

Detailed explanation of Vue development website SEO optimization method

Because the data binding mechanism of Vue and oth...

How to implement the paging function of MyBatis interceptor

How to implement the paging function of MyBatis i...

Linux RabbitMQ cluster construction process diagram

1. Overall steps At the beginning, we introduced ...

Tips to prevent others from saving as my web page and copying my site

Nowadays, copying websites is very common on the I...