共计 856 个字符,预计需要花费 3 分钟才能阅读完成。
1 通过 rsync 备份网站到备份服务器需要自己配置 ssh 的配置文件
2 需要安装 rsync 安装方式为 centos7 为 yum install -y rsync
3 设置计划任务即可因为使用了 –delete 参数如果原站数据删除备份服务器也会删除。
解决办法是备份服务器重新生成一个按日志的文件夹。
下面是脚本内容,内容过于简单我就不注释了!
#!/bin/bash
#通过 rsync 备份网站
#date:2019-06-19
#www.g6k.cn
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
scriptdir=/script
web_dir=/home/wwwroot
hosttype=`hostname` # 机器类型
pushckpath=/home/backupweb
logfile=/logs/sync_backupweb.log
date_time=`date +%F`
ssh backup "ls ${pushckpath}/${hosttype}/${date_time}" &>/dev/null
if [$? -ne 0];then
ssh backup "mkdir -p ${pushckpath}/${hosttype}/${date_time}"
fi
for dir in `ls -l $web_dir|grep ^d| awk '{print $9}'`;do
cd ${web_dir}
/usr/bin/rsync -avzP --delete --bwlimit=5000 --exclude=${dir}/ 排除的文件夹 / $dir backup:${pushckpath}/${hosttype}/${date_time}
if [$? -ne 0];then
echo "$date_time 备份 ${dir} 网站成功 " >> ${scriptdir}${logfile}
fi
done
echo "===========================" >> ${scriptdir}${logfile}
正文完
发表至: 未分类
2019-06-20