mysql--using the script to realize the sub-database sub-table backup

Source: Internet
Author: User

#!/bin/bash

User=root

passwd=123456

Sock=/data/3306/mysql.sock

login= "Mysql-u$user-p$passwd-s $SOCK"

Database= ' $LOGIN-e "show databases; | Sed ' 1d ' |egrep-v ". *schema|mysql" '

dump= "Mysqldump-u$user-p$passwd-s $SOCK"

#cd/backup/mysql/

For database in $DATABASE;d o

[!-D $database] && mkdir-p/backup/mysql/$database

$DUMP-B $database | gzip >/backup/mysql/$database/${database}_$ (date +%f). sql.gz

Table= ' $LOGIN-e "show tables from $database;" | Sed ' 1d '

For table in $TABLE;d o

$DUMP $database $table | gzip >/backup/mysql/$database/${database}_${table}_$ (date +%f). sql.gz

Done

Done


Combined with scheduled tasks, you can fully automate backups

This article is from the "burning Years of Passion" blog, please be sure to keep this source http://liuzhengwei521.blog.51cto.com/4855442/1763254

mysql--using the script to realize the sub-database sub-table backup

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.