Backup

Gitlab備份文件位置(Omnibus安裝)

  • May 24, 2017

我已經使用綜合安裝包安裝了 Gitlab。

我使用以下命令進行了備份

sudo gitlab-rake gitlab:backup:create

備份已成功創建。但我不確定在哪裡可以找到備份文件。預設情況下,所有 Gitlab 備份都儲存在哪裡..?

/var/opt/gitlab/backups預設情況下。

https://gitlab.com/gitlab-org/gitlab-ce/blob/a64d0f79173301dd86db073e9b6a329b56554dbd/doc/raketasks/backup_restore.md說:

此存檔將保存在 backup_path 中(請參閱 config/gitlab.yml)

然後https://gitlab.com/gitlab-org/omnibus-gitlab/blob/9e97671d8dee3ea6a7bbb99347ad279b65689f28/files/gitlab-cookbooks/gitlab/templates/default/gitlab.yml.erb#L208說它使用模板變數@backup_path

https://gitlab.com/gitlab-org/omnibus-gitlab/blob/9e97671d8dee3ea6a7bbb99347ad279b65689f28/files/gitlab-cookbooks/gitlab/attributes/default.rb#L120說:

default['gitlab']['gitlab-rails']['backup_path'] = "/var/opt/gitlab/backups"

我建議您複製 GitLab 綜合工具,並git grep針對其他類似問題離開,並且您在 SO 上發布 gitlab 問題:它在那裡被接受並且具有更大的開發人員流量。

引用自:https://serverfault.com/questions/649895