Linux 定时备份

背景:为防止数据丢失,要求每天备份一次

以达梦数据库为例,每天定时备份

1.填写备份脚本

vi db_day_backup.sh

#!/bin/bash
DIR=$(cd $(dirname $0) && pwd)
tarname=data.tar_$(date +%Y%m%d)
cd $DIR

if [[ $(find $DIR/ -name $tarname 2>/dev/null |grep $tarname) != '' ]];then
   echo 'backup alrealy existed!'
else
  echo 'start tar... '
  tar -czvf $tarname data
  echo 'end tar ....'
fi

#删除2天以前的备份数据

find $DIR/ -mtime +2 -name "data.tar*" -exec rm -rf {} \;

 2.授权

chmod +x db_day_backup.sh

3.添加到定时任务

 vi /etc/crontab

#添加如下脚本

57 22 * * * root /home/data/develop/dm8/db_day_backup.sh

如图:

Linux 定时备份_第1张图片

4.使定时任务生效 

systemctl restart crond 

你可能感兴趣的:(linux,服务器,运维)