Home Database Mysql Tutorial Linux下自动备份MySQL数据库并上传到远程FTP服务器且删除指定日_MySQL

Linux下自动备份MySQL数据库并上传到远程FTP服务器且删除指定日_MySQL

Jun 01, 2016 pm 01:34 PM
linux mysql database server

bitsCN.com

Linux下自动备份MySQL数据库并上传到远程FTP服务器且删除指定日期前的备份Shell脚本

 

说明: 

1、备份MySQL数据库存放目录/var/lib/mysql下面的vos3000db数据库到/home/mysql_data里面,并且保存为vos3000db_bak_2012_06_30.tar.gz的压缩文件格式(2012_06_30是指备份执行时当天的日期),最后只保留最近7天的备份

2、上传/home/mysql_data里面的备份文件到远程FTP服务器上,并且只保留最近7天的备份

3、FTP服务器:192.168.21.139  端口:21 账号:admin 密码:123456  mysql_data为备份文件存放目录(此目录需要预先在FTP服务器创建好)

实现步骤:

1、安装ftp命令

apt-get install ftp   #安装ftp

2、创建保存备份文件的目录:/home/mysql_data

cd /home  #进入目录

mkdir mysql_data   #创建目录

3、创建备份脚本文件:/home/mysql_data/mysql_databak.sh

cd /home/mysql_data     #进入目录

touch mysql_databak.sh  #创建文件

nano  mysql_databak.sh  #编辑文件,输入以下内容

 

 

#!/bin/sh 

 

 

DUMP=/usr/bin/mysqldump    #mysqldump备份程序执行路径 

 

 

OUT_DIR=/home/mysql_data   #备份文件存放路径 

 

 

LINUX_USER=root            #系统用户名 

 

 

DB_NAME=vos3000db               #要备份的数据库名字 

 

DB_USER=root              #数据库用户名 

  

DB_PASS=521521             #数据库密码 

 

DAYS=7         #DAYS=7代表删除7天前的备份,即只保留最近7天的备份 

 

 

cd $OUT_DIR                #进入备份存放目录 

 

 

DATE=`date +%Y_%m_%d`      #获取当前系统时间 

 

 

OUT_SQL="$DATE.sql"        #备份数据库的文件名 

 

 

TAR_SQL="vos3000db_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 -zcvf $TAR_SQL  $OUT_SQL  #压缩为.tar.gz格式 

 

 

rm $OUT_SQL   #删除.sql格式的备份文件 

 

 

chown  $LINUX_USER:$LINUX_USER $OUT_DIR/$TAR_SQL  #更改备份数据库文件的所有者 

 

 

find $OUT_DIR -name "vos3000db_bak*" -type f -mtime +$DAYS -exec rm {} /;  #删除7天前的备份文件(注意:{} /;中间有空格) 

 

 

deldate=` date -d -7day +%Y_%m_%d `   #删除ftp服务器空间7天前的备份 

 

 

ftp -n

 

 

open 192.168.15.5 21

 

 

user sam 521521

 

 

binary  #设置二进制传输 

 

 

cd mysql_data  #进入ftp目录 

 

 

lcd /home/mysql_data  #列出本地目录 

 

 

prompt 

 

 

mput vos3000db_bak_$DATE.tar.gz   vos3000db_bak_$DATE.tar.gz   #上传目录中的文件 

 

 

mdelete vos3000db_bak_$deldate.tar.gz  vos3000db_bak_$deldate.tar.gz  #删除ftp空间7天前的备份 

 

lose 

 

bye !

ctrl+o   #保存配置

ctrl+x   #退出

4、修改文件属性,使其可执行

chmod +x /home/mysql_data/mysql_databak.sh

5、修改/etc/crontab

nano /etc/crontab  #在下面添加

45 22 * * * root  /home/mysql_data/mysql_databak.sh   #表示每天22点45分执行备份

6、重新启动crond使设置生效

service cron stop  #停止

service cron start #启动

/etc/init.d/cron restart #重启

chkconfig cron on #设为开机启动  先要安装chkconfig(apt-get install chkconfig)

在/home/mysql_data目录下面可以看到vos3000db_bak_2012_06_30.tar.gz这样的压缩文件

如果需要恢复文件的时候,只需要把这个文件解压:tar -zxvf vos3000db_bak_2012_06_30.tar.gz

然后导入到数据库中即可。

至此,Debian下自动备份MySQL数据库并上传到远程FTP服务器且删除指定日期前的备份Shell脚本完成。

bitsCN.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Ouyi okx installation package is directly included Ouyi okx installation package is directly included Feb 21, 2025 pm 08:00 PM

Ouyi OKX, the world's leading digital asset exchange, has now launched an official installation package to provide a safe and convenient trading experience. The OKX installation package of Ouyi does not need to be accessed through a browser. It can directly install independent applications on the device, creating a stable and efficient trading platform for users. The installation process is simple and easy to understand. Users only need to download the latest version of the installation package and follow the prompts to complete the installation step by step.

BITGet official website installation (2025 beginner's guide) BITGet official website installation (2025 beginner's guide) Feb 21, 2025 pm 08:42 PM

BITGet is a cryptocurrency exchange that provides a variety of trading services including spot trading, contract trading and derivatives. Founded in 2018, the exchange is headquartered in Singapore and is committed to providing users with a safe and reliable trading platform. BITGet offers a variety of trading pairs, including BTC/USDT, ETH/USDT and XRP/USDT. Additionally, the exchange has a reputation for security and liquidity and offers a variety of features such as premium order types, leveraged trading and 24/7 customer support.

Get the gate.io installation package for free Get the gate.io installation package for free Feb 21, 2025 pm 08:21 PM

Gate.io is a popular cryptocurrency exchange that users can use by downloading its installation package and installing it on their devices. The steps to obtain the installation package are as follows: Visit the official website of Gate.io, click "Download", select the corresponding operating system (Windows, Mac or Linux), and download the installation package to your computer. It is recommended to temporarily disable antivirus software or firewall during installation to ensure smooth installation. After completion, the user needs to create a Gate.io account to start using it.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Apr 01, 2025 pm 03:06 PM

Causes and solutions for errors when using PECL to install extensions in Docker environment When using Docker environment, we often encounter some headaches...

The page is blank after PHP is connected to MySQL. What is the reason for the invalid die() function? The page is blank after PHP is connected to MySQL. What is the reason for the invalid die() function? Apr 01, 2025 pm 03:03 PM

The page is blank after PHP connects to MySQL, and the reason why die() function fails. When learning the connection between PHP and MySQL database, you often encounter some confusing things...

gate.io official website registration installation package link gate.io official website registration installation package link Feb 21, 2025 pm 08:15 PM

Gate.io is a highly acclaimed cryptocurrency trading platform known for its extensive token selection, low transaction fees and a user-friendly interface. With its advanced security features and excellent customer service, Gate.io provides traders with a reliable and convenient cryptocurrency trading environment. If you want to join Gate.io, please click the link provided to download the official registration installation package to start your cryptocurrency trading journey.

How to solve the permissions problem encountered when viewing Python version in Linux terminal? How to solve the permissions problem encountered when viewing Python version in Linux terminal? Apr 01, 2025 pm 05:09 PM

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

See all articles