gitlab人备份与恢复
Posted 运维工匠实战(如果发现有错误请大家把正确的方法发送给我,方便
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gitlab人备份与恢复相关的知识,希望对你有一定的参考价值。
注意新建备份目录是:/usr/local/src/repositories 属主和属组:
# ll -d repositories/ drwx------ 4 git root 4096 Feb 7 17:32 repositories/
修改配置文件:
vim /opt/gitlab/embedded/service/gitlab-rails/config/gitlab.yml
## Backup settings backup: #path: "/var/opt/gitlab/backups" # Relative paths are relative to Rails.root (default: tmp/backups/) path: "/usr/local/src/repositories" # Relative paths are relative to Rails.root (default: tmp/backups/)
有些linux系统是需要改此文件:/etc/gitlab/gitlab.rb
重启# gitlab-ctl restart
备份git:
# gitlab-rake gitlab:backup:create
恢复备份:
# gitlab-ctl stop unicorn # gitlab-ctl stop sidekiq # ls /usr/local/src/repositories/ 1484140459_gitlab_backup.tar # gitlab-rake gitlab:backup:restore BACKUP=1484140459 Unpacking backup ... #如果数据迁移的话一定要保持gitlab的版本是一至,不然会报错!!! # gitlab-ctl start
以上是关于gitlab人备份与恢复的主要内容,如果未能解决你的问题,请参考以下文章