Regular mysql database backup and mysql Database Backup

Source: Internet
Author: User
Tags mysql backup name database

Regular mysql database backup and mysql Database Backup

I recently used mysql backup and wrote a shell script for backup.

#! /Bin/bash # define the backup database name database = *** # define the backup time currTime =time (date + % Y % m % d) # backup storage directory bakUrl =/opt/$ database/db/$ currTime # backup file name databaseBakName = $ database. $ currTime. SQL # backup file path databaseBakUrl = $ bakUrl/$ databaseBakName # determine whether the backup folder exists # Here the-d parameter determines whether the backup storage directory exists if [! -D $ bakUrl]; then mkdir-p $ bakUrl fi # Here, the-f parameter determines whether the backup file exists if [! -F $ databaseBakUrl]; then mysqldump-u ***-hIP-p *** $ database> $ databaseBakUrlelse rm-rf $ databaseBakUrl mysqldump-u ***-hIP-p *** $ database> $ databaseBakUrlfi

Name the shell script databasebak. sh.

Grant the script permission chmod u + x databasebak. sh

Add scheduled task

Crontab-e

 

30 1 *** sh/home/databasebak. sh &

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.