MySQL backup script

Source: Internet
Author: User
Tags mysql backup

#!/bin/sh

Dump=/usr/local/mysql/bin/mysqldump

Out_dir=/data01/mysqldata_bak

Linux_user=bakmysql

Db_name= database name

db_user= User Name

db_pass= Password

Days=7

CD $OUT _dir

Date= ' Date +%y_%m_%d '

Out_sql= "$DATE. SQL"

Tar_sql= "Mysql_bak_$date.tar.gz"

$DUMP-u$db_user-p$db_pass $DB _name--default-character-set=utf8--opt-q-R--skip-lock-tables> $OUT _sql

TAR-CZF $TAR _sql./$OUT _sql

RM $OUT _sql

Chown $LINUX _user: $LINUX _user $OUT _dir/$TAR _sql

Find $OUT _dir-name "mysql_bak*"-type f-mtime + $DAYS-exec rm {} \;


This article is from the "System operation and maintenance website Development" blog, please be sure to keep this source http://cgc888.blog.51cto.com/3989433/1688325

MySQL backup script

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.