MySQL database export compression and save to the specified location backup script

Source: Internet
Author: User
Tags mkdir mysql database backup

A script is used to export all MySQL databases and save them to a specified location.

The contents are as follows:

  code is as follows &nbs P;

#!/bin/bash
############################################
#
# This is a MySQL database backup script
# One time export all databases and GZ compress save
# ccshaowei#gmail.com
# 2013/05/08
# http:// www.111cn.net#
############################################
# Backup directory
Backdir=/home/shaowei/dbbak
# Database login user name
dbuser= ' dbusername '
# Database login password
dbpass= ' dbpasswd '
# database location is usually/var/lib/mysql
dblist=$ (ls-p/V Ar/lib/mysql | grep/| tr-d/)
################ configuration End #################
today=$ (date +%y%m%d)
mkdir $backdir
mkdir $backdir/$tod Ay
for dbname in $dblist
######################################## #如果不需要显示压缩比, remove the-v parameter
do  after gzip Mysqldump -u$dbuser-p$dbpass $dbname | Gzip-v > $backdir/$today/$dbname-$today. sql.gz
Echo $dbname ' OK ' #如果需要他默默的运行, comment out this line too
Done

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.