标签:文件中 ctime spool 脚本 echo 备份文件 文件夹 cront 调度
gitlab-rake gitlab:backup:create
执行之后,就会生成一个备份文件
[root@iZuf6dztc469onegfborf5Z backups]# ll
-rw------- 1 git git 1361940480 11月 6 16:43 1541493776_2018_11_06_11.1.4_gitlab_backup.tar
可以写一个脚本
#!/bin/bash
cd /var/opt/gitlab/backups/
gitlab-rake gitlab:backup:create
find /var/opt/gitlab/backups/ -type f -ctime +5 -exec rm -rf {} \;
进入文件夹,进行备份。查找五天前的备份数据,进行删除。
备份可以安排在每天的3点30左右。这个时候大家都睡觉。
# echo "30 03 * * * root run-parts /home/jiqing/sh >> /tmp/git_backup.log 2>&1" >> /etc/crontab
/sbin/service crond stop
/sbin/service crond start
重启定时服务。
Linux下的任务调度分为两类,系统任务调度和用户任务调度
标签:文件中 ctime spool 脚本 echo 备份文件 文件夹 cront 调度
原文地址:https://www.cnblogs.com/jiqing9006/p/9916835.html