文章目录
- 1 按天自动备份(归档)文件
- 1.1 准备工作
- 1.2 编写`配置文件`和`归档脚本`
- 1.2.1 编写`配置文件`
- 1.2.2 编写`归档脚本`
- 1.3 运行脚本
- 1.4 运行分析
- 1.5 添加到`cron`表中
- 1.5.1 编辑`cron`表
- 1.5.2 测试脚本是否可用
- 2 按小时自动备份(归档)文件
- 2.1 准备工作
- 2.2 编写`配置文件`和`归档脚本`
- 2.2.1 编写`配置文件`
- 2.2.2 编写`归档脚本`
- 2.3 运行脚本
- 2.4 运行分析
- 2.5 添加到`cron`表中
- 2.5.1 编辑`cron`表
- 2.5.2 测试脚本是否可用
1 按天自动备份(归档)文件
1.1 准备工作
# 创建一个集中归档仓库目录
sudo mkdir /archive# 创建一个用户组的方式,为需要在集中归档目录中创建文件的用户授权
sudo groupadd Archivers
## 更改目录所属组
sudo chgrp Archivers /archive
## 查看更改目录所属组是否成功
ls -ld /archive# 将需要备份的用户添加到用户组
sudo usermod -aG Archivers bobo# 修改目录权限
sudo chmod 775 /archive
## 查看修改目录权限是否成功
ls -ld /archive# 登出再登入使组成员关系生效 --> 效果:只要是该组的成员,无需超级用户权限就可以在目录中创建文件了。
exit
登录# 将目录的粘滞位加上 --> 效果:为了防止其他用户不小心删除其他用户文件
sudo chmod +t /archive
## 查看将目录的粘滞位加上是否成功(如果设置了粘滞位,输出中目录权限的最后一个字符会是一个 t)
ls -ld /archive
1.2 编写配置文件
和归档脚本
1.2.1 编写配置文件
# 创建配置文件
vi Files_To_Backup
# 添加下面内容 -- 这里面的内容根据自己的需要进行配置
/home/bobo/Project
/home/bobo/Downloads
/home/Does_not_exist
/home/bobo/Documents
# 将配置文件移动到 /archive 目录下面
mv Files_To_Backup /archive
1.2.2 编写归档脚本
# 创建配置文件
vi Daily_Archive.sh
# 添加下面内容
#!/bin/bash
#
# Daily_Archive - Archive designated files & directories
########################################################
#
# Gather Current Date
#
DATE=$(date +%y%m%d)
#
# Set Archive File Name
#
FILE=archive$DATE.tar.gz
#
# Set Configuration and Destination File
#
CONFIG_FILE=/archive/Files_To_Backup
DESTINATION=/archive/$FILE
#
######### Main Script #########################
#
# Check Backup Config file exists
#
if [ -f $CONFIG_FILE ] # Make sure the config file still exists.
then # If it exists, do nothing but continue on.echoelse # If it doesn't exist, issue error & exit script.echoecho "$CONFIG_FILE does not exist."echo "Backup not completed due to missing Configuration File"echo
exit
fi
#
# Build the names of all the files to backup
#
FILE_NO=1 # Start on Line 1 of Config File.
exec < $CONFIG_FILE # Redirect Std Input to name of Config File
#
read FILE_NAME # Read 1st record
#
while [ $? -eq 0 ] # Create list of files to backup.
do
# Make sure the file or directory exists.
if [ -f $FILE_NAME -o -d $FILE_NAME ]
then# If file exists, add its name to the list.FILE_LIST="$FILE_LIST $FILE_NAME"
else# If file doesn't exist, issue warningechoecho "$FILE_NAME, does not exist."echo "Obviously, I will not include it in this archive."echo "It is listed on line $FILE_NO of the config file."echo "Continuing to build archive list..."echo
fi
#
FILE_NO=$[$FILE_NO + 1] # Increase Line/File number by one.
read FILE_NAME # Read next record.
done
#
#######################################
#
# Backup the files and Compress Archive
#
echo "Starting archive..."
echo
#
tar -czf $DESTINATION $FILE_LIST 2> /dev/null
#
echo "Archive completed"
echo "Resulting archive file is: $DESTINATION"
echo
#
exit
1.3 运行脚本
# 为脚本添加执行权限
chmod u+x Daily_Archive.sh
## 查看为脚本添加执行权限是否成功
ls -l Daily_Archive.sh# 运行脚本文件
./Daily_Archive.sh# 查看运行结果
ls /archive
1.4 运行分析
bobo@thj:~$ ./Daily_Archive.sh/home/Does_not_exist, does not exist.
Obviously, I will not include it in this archive.
It is listed on line 3 of the config file.
Continuing to build archive list...Starting archive...Archive completed
Resulting archive file is: /archive/archive240227.tar.gzbobo@thj:~$ ls /archive/
Files_To_Backup archive240227.tar.gz
运行脚本之后,如果待备份的文件不存在,将不会被备份;如果存在,将会被备份。
1.5 添加到cron
表中
1.5.1 编辑cron
表
# 将脚本添加到 `cron` 表中,以便每天自动执行归档脚本
crontab -e
## 选择你熟悉的编辑器,我选择 vim, 添加下面代码 --> 效果:每月每周的每一天的0时0分执行这个脚本
0 0 * * * /home/bobo/Daily_Archive.sh
## 检查是否添加成功
crontab -l# 修改Daily_Archive.sh脚本以便添加一个日志处理错误,修改情况如下:
bobo@thj:~$ head Daily_Archive.sh
#!/bin/bash
#
# Set a daily_archive.log --> 效果:将脚本的标准输出和错误输出重定向到日志文件
exec > /home/bobo/daily_archive.log 2>&1
#
# Daily_Archive - Archive designated files & directories
########################################################
#
# Gather Current Date
#
1.5.2 测试脚本是否可用
# 运行脚本文件
./Daily_Archive.sh# 查看日志文件
bobo@thj:~$ cat daily_archive.log/home/Does_not_exist, does not exist.
Obviously, I will not include it in this archive.
It is listed on line 3 of the config file.
Continuing to build archive list...Starting archive...Archive completed
Resulting archive file is: /archive/archive240227.tar.gz# 查看运行结果
ls /archive
2 按小时自动备份(归档)文件
2.1 准备工作
# 创建一个集中归档仓库目录
sudo mkdir /archive/hourly# 上面已经创建组了,这里就省略
## 更改目录所属组
sudo chgrp Archivers /archive/hourly
## 查看更改目录所属组是否成功
ls -ld /archive/hourly# 将需要备份的用户添加到用户组
# 省略# 修改目录权限
sudo chmod 775 /archive/hourly
## 查看修改目录权限是否成功
ls -ld /archive/hourly# 登出再登入使组成员关系生效 --> 效果:只要是该组的成员,无需超级用户权限就可以在目录中创建文件了。
# 省略# 将目录的粘滞位加上 --> 效果:为了防止其他用户不小心删除其他用户文件
sudo chmod +t /archive/hourly
## 查看将目录的粘滞位加上是否成功(如果设置了粘滞位,输出中目录权限的最后一个字符会是一个 t)
ls -ld /archive/hourly
2.2 编写配置文件
和归档脚本
2.2.1 编写配置文件
# 创建配置文件
vi Files_To_Backup
# 添加下面内容 -- 这里面的内容根据自己的需要进行配置
/usr/local/Production/Machine_Errors
/home/Development/Simulation_Logs
# 将配置文件移动到 /archive/hourly 目录下面
mv Files_To_Backup /archive/hourly
2.2.2 编写归档脚本
# 创建配置文件
vi Hourly_Archive.sh
# 添加下面内容
#!/bin/bash
#
# Hourly_Archive - Every hour create an archive
#########################################################
#
# Set Configuration File
#
CONFIG_FILE=/archive/hourly/Files_To_Backup
#
# Set Base Archive Destination Location
#
BASEDEST=/archive/hourly
#
# Gather Current Day, Month & Time
#
DAY=$(date +%d)
MONTH=$(date +%m)
TIME=$(date +%k%M)
#
# Create Archive Destination Directory
#
mkdir -p $BASEDEST/$MONTH/$DAY
#
# Build Archive Destination File Name
#
DESTINATION=$BASEDEST/$MONTH/$DAY/archive$TIME.tar.gz
#
########## Main Script ####################
#
# Check Backup Config file exists
#
if [ -f $CONFIG_FILE ] # Make sure the config file still exists.
then # If it exists, do nothing but continue on.echoelse # If it doesn't exist, issue error & exit script.echoecho "$CONFIG_FILE does not exist."echo "Backup not completed due to missing Configuration File"echo
exit
fi
#
# Build the names of all the files to backup
#
FILE_NO=1 # Start on Line 1 of Config File.
exec < $CONFIG_FILE # Redirect Std Input to name of Config File
#
read FILE_NAME # Read 1st record
#
while [ $? -eq 0 ] # Create list of files to backup.
do
# Make sure the file or directory exists.
if [ -f $FILE_NAME -o -d $FILE_NAME ]
then# If file exists, add its name to the list.FILE_LIST="$FILE_LIST $FILE_NAME"
else# If file doesn't exist, issue warningechoecho "$FILE_NAME, does not exist."echo "Obviously, I will not include it in this archive."echo "It is listed on line $FILE_NO of the config file."echo "Continuing to build archive list..."echo
fi
#
FILE_NO=$[$FILE_NO + 1] # Increase Line/File number by one.
read FILE_NAME # Read next record.
done
#
#######################################
#
# Backup the files and Compress Archive
#
echo "Starting archive..."
echo
#
tar -czf $DESTINATION $FILE_LIST 2> /dev/null
#
echo "Archive completed"
echo "Resulting archive file is: $DESTINATION"
echo
#
exit
2.3 运行脚本
# 为脚本添加执行权限
chmod u+x Hourly_Archive.sh
## 查看为脚本添加执行权限是否成功
ls -l Hourly_Archive.sh# 运行脚本文件
./Hourly_Archive.sh# 查看运行结果
ls /archive/hourly
2.4 运行分析
bobo@thj:~$ ./Hourly_Archive.shStarting archive...Archive completed
Resulting archive file is: /archive/hourly/02/27/archive1343.tar.gzbobo@thj:~$ ls -l /archive/hourly/02/27/
total 4
-rw-r--r-- 1 bobo bobo 181 Feb 27 13:43 archive1343.tar.gz
bobo@thj:~$ ./Hourly_Archive.shStarting archive...Archive completed
Resulting archive file is: /archive/hourly/02/27/archive1344.tar.gzbobo@thj:~$ ls -l /archive/hourly/02/27/
total 8
-rw-r--r-- 1 bobo bobo 181 Feb 27 13:43 archive1343.tar.gz
-rw-r--r-- 1 bobo bobo 181 Feb 27 13:44 archive1344.tar.gz
备份成功~
2.5 添加到cron
表中
2.5.1 编辑cron
表
# 将脚本添加到 `cron` 表中,以便每天自动执行归档脚本
crontab -e
## 添加下面代码 --> 效果:每月每周的每一天的0时0分执行这个脚本
0 0 * * * /home/bobo/Hourly_Archive.sh
## 检查是否添加成功
crontab -l# 修改Hourly_Archive.sh脚本以便添加一个日志处理错误,修改情况如下:
bobo@thj:~$ head Hourly_Archive.sh
#!/bin/bash
#
# Set a Hourly_Archive.log
exec > /home/bobo/hourly_archive.log 2>&1 // 脚本的标准输出和错误输出重定向到日志文件
#
# Hourly_Archive.sh - Archive designated files & directories
########################################################
#
# Gather Current Date
#
2.5.2 测试脚本是否可用
bobo@thj:~$ ./Hourly_Archive.sh
bobo@thj:~$ cat hourly_archive.logStarting archive...Archive completed
Resulting archive file is: /archive/hourly/02/27/archive1403.tar.gzbobo@thj:~$ ls /archive/hourly/02/27/
archive1343.tar.gz archive1344.tar.gz archive1403.tar.gz
bobo@thj:~$