zoukankan      html  css  js  c++  java
  • gitlab自动备份

    1.周期性计划任务:
    $crontab -e
    0 0 * * * /opt/gitlab/bin/gitlab-rake gitlab:backup:create
    $service crond restart
    每天凌晨备份gitlab的数据
    2.删除过期的备份文件:
    因为每天都会进行一次备份,而备份的数据比较大,磁盘空间会被大量使用,因此,定期删除过期的文件
    $vim /var/opt/gitlab/backups/remove.sh

    !/bin/bash

    find "/var/opt/gitlab/backups/" -name "*.tar" -ctime +1 -type f -exec rm -rf {} ;
    $contab -e
    0 5 * * * root /var/opt/gitlab/backups/remove.sh -D 1
    $service crond restart
    每天凌晨5点执行删除过期文件的脚本,remove.sh会删除创建时间是一天前的文件
    $chmod +x remove.sh
    赋予脚本执行权限,否则用户不能执行此脚本.

  • 相关阅读:
    PAT甲级1137Final Grading
    晚测6
    模拟15
    模拟14
    模拟13
    晚测5
    晚测4
    模拟11
    7012. 2021.03.15【2021省赛模拟】十
    7011. 2021.03.13【2021省赛模拟】nonintersect
  • 原文地址:https://www.cnblogs.com/kasumi/p/6269293.html
Copyright © 2011-2022 走看看