Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement full and incremental backup scripts in mysqldump

2025-02-21 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article will explain in detail how to implement full and incremental backup scripts in mysqldump. The editor thinks it is very practical, so I share it with you as a reference. I hope you can get something after reading this article.

#! / bin/bash

#

# mysql full backup script. It is recommended to run it on slave slave library and enable log_slave_updates=1.

Backupdir=/backup

DateDIR= `date +% Ymuri% mmury% d`

LogsindexPath=/usr/local/mysql/logs/ray-bin.index

If [!-d $backupdir]; then

Mkdir-p $backupdir

Fi

Cd ${backupdir}

If [!-d $dateDIR]; then

Mkdir-p $dateDIR

Fi

For i in `mysql-uroot-p123456-e "show databases" 2 > & 1 | grep-v-E "Database | Warning" `

Do

Mysqldump-uroot-p123456-- default-character-set=utf8-Q-- flush-privileges-- single-transaction-- master-data=1-- flush-logs-- routines-- triggers-- events-- hex-blob-E-R-B testdb | gzip > ${backupdir} / ${dateDIR} / mysql_back_$ {I} _ ${dateDIR} .sql.gz

Done

Binlog_rm= `tail-n 1 ${logsindexPath} | awk-F'/'{print $NF}'`

Mysql-uroot-p123456-e "purge binary logs to'${binlog_rm}'"

#! / bin/bash

# mysql incremental backup script, it is recommended to run it on slave slave server and enable log_slave_updates=1

Backupdir=/backup

DateDIR= `date +% Ymuri% mmury% d`

LogsIndexPath=/usr/local/mysql/logs/ray-bin.index

Mysqladmin-uroot-p123456 flush-logs

Binlog_cp= `head-n-1 ${logsIndexPath} `

For i in ${binlog_cp}

Do

Mysql-uroot-p123456-e "\! cp-p ${I} ${backupdir} / ${dateDIR} /"

Done

Binlog_rm= `tail-n 1 ${logsIndexPath} | awk-F'/'{print $NF}'`

Mysql-uroot-p123456-e "purge binary logs to'${binlog_rm}'"

This is the end of the article on "how to achieve full and incremental backup scripts for mysqldump". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report