[gitlab-ce]
name=Gitlab CE Repository
baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el$releasever/
gpgcheck=0
enabled=1
EOF
$ yum makecache
$ yum install gitlab-ce
external_url 'http://gitlab.xxxxxx.com' #改域名,修改成你自己的域名,如果你用的https,改成https://gitlab.xxxxxx.com
$ gitlab-ctl reconfigure ## 使配置生效
$ gitlab-ctl status ## 确认服务状态
04如何备份
gitlab_rails['backup_path'] = "/var/opt/gitlab/backups"
该项定义了默认备份出文件的路径,可以通过修改该配置,并执行 gitlab-ctl reconfigure 或者 gitlab-ctl restart 重启服务生效。
0 2 * * * /opt/gitlab/bin/gitlab-rake gitlab:backup:create
可以到 /var/opt/gitlab/backups找到备份包,解压查看,会发现备份的还是比较全面的,数据库、repositories、build、upload等分类还是比较清晰的。
gitlab-ctl stop unicorn
gitlab-ctl stop sidekiq
如果是台空主机,没有任何操作,理论上不停这两个服务也可以。停这两个服务是为了保证数据一致性。
[root@localhost gitlab]# scp 1530773117_2018_07_05_gitlab_backup.tar 10.0.3.111:/var/opt/gitlab/backups/ ## 600权限是无权恢复的。--- 这里改成了777[root@localhost backups]# pwd/var/opt/gitlab/backups[root@localhost backups]# chmod 777 1530773117_2018_07_05_gitlab_backup.tar[root@localhost backups]# lltotal 17328900-rwxrwxrwx 1 git git 17744793600 Jul 5 14:47 1530773117_2018_07_05_gitlab_backup.tar
3. 执行数据恢复
执行下面的命令进行恢复:后面再输入两次yes就完成恢复了。
gitlab-rake gitlab:backup:restore BACKUP=1530773117_2018_07_05_gitlab_backup.tar
PS:根据版本不同恢复时可能有点小区别 06附录1 常用命令
# 默认的log主目录为 /var/log/gitlab/# 检查redis的日志sudo gitlab-ctl tail redis# 检查postgresql的日志sudo gitlab-ctl tail postgresql# 检查gitlab-workhorse的日志sudo gitlab-ctl tail gitlab-workhorse# 检查logrotate的日志sudo gitlab-ctl tail logrotate# 检查nginx的日志sudo gitlab-ctl tail nginx# 检查sidekiq的日志sudo gitlab-ctl tail sidekiq# 检查unicorn的日志sudo gitlab-ctl tail unicornsudo gitlab-ctl status //检查所依赖的服务是否运行sudo gitlab-ctl tail //检查gitlab所依赖的服务是否在运行时出错sudo gitlab-rake gitlab:check //检查的配置是否正确,如果有错误,请根据提示解决它
07FAQ 错误1
error: proxyRoundTripper: GET "/" failed with: "dial unix /var/opt/gitlab/gitlab-rails/sockets/gitlab.socket: connect: no such file or directory"
原因:unicorn 没有正常启动
解决:查看unicorn的日志, /var/log/gitlab/unicorn/*.log, 一般为端口冲突或是权限问题。依赖相应的日志,希望你可以很好的解决,enjoy it.