无忌过招:手把手教你搭建自己的GitLab库
本文Gitlab的安装为主机方式, 获取其他安装方式请点击git.lug.ustc.edu.cn/help/instal…
02 架构架构概述:
Unicorn: Handles requests for the web interface and API, 一般gitlab站点,多数是因为这个服务有问题导致的Sidekiq: Background jobs processorRedis: Caching servicePostgreSQL: Database03 安装1. 设置repo[gitlab-ce]name=GitlabCERepositorybaseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el$releasever/gpgcheck=0enabled=1EOF
2. 安装GitLab
$yummakecache$yuminstallgitlab-ce
3. 修改配置
配置文件/etc/gitlab/gitlab.rb注: 你可根据注释修改配置文件,一般修改如下
external_url 'gitlab.xxxxxx.com' #改域名,修改成你自己的域名,如果你用的https,改成gitlab.xxxxxx.com
4. 启动服务
$gitlab-ctlreconfigure##使配置生效$gitlab-ctlstatus##确认服务状态04 如何备份1. 设置备份目录
先打开/etc/gitlab/gitlab.rb配置文件,查看一个和备份相关的配置项:
gitlab_rails['backup_path'] = "/var/opt/gitlab/backups"
该项定义了默认备份出文件的路径,可以通过修改该配置,并执行 gitlab-ctl reconfigure 或者 gitlab-ctl restart 重启服务生效。
2. 执行备份
备份执行一条命令就搞定:/opt/gitlab/bin/gitlab-rake gitlab:backup:create ,也可以加到crontab中定时执行:
02***/opt/gitlab/bin/gitlab-rakegitlab:backup:create
可以到 /var/opt/gitlab/backups找到备份包,解压查看,会发现备份的还是比较全面的,数据库、repositories、build、upload等分类还是比较清晰的。
3. 备份参数注释
每天执行备份,肯定有目录被爆满的风险,我们可以立马想到的可以通过find 查找一定的时间前的文件,配合rm进行删除。不过不需要这么麻烦,gitlab-ce自身集成的有自动删除配置。
同样打开/etc/gitlab/gitlab.rb配置文件,可以找到如下配置:
gitlab_rails['backup_keep_time'] = 604800这里是设置备份保留7天(7360024=604800),秒为单位,如果想增大或减小,可以直接在该处配置,并通过gitlab-ctl restart 重启服务生效。
gitlab-ctlstopunicorngitlab-ctlstopsidekiq
如果是台空主机,没有任何操作,理论上不停这两个服务也可以。停这两个服务是为了保证数据一致性。
2. 迁移数据
如果你没修改过默认备份目录的话,将老服务器/var/opt/gitlab/backups目录下的备份文件拷贝到新服务器上的/var/opt/gitlab/backups
[root@localhostgitlab]#scp1530773117_2018_07_05_gitlab_backup.tar10.0.3.111:/var/opt/gitlab/backups/##600权限是无权恢复的。---这里改成了777[root@localhostbackups]#pwd/var/opt/gitlab/backups[root@localhostbackups]#chmod7771530773117_2018_07_05_gitlab_backup.tar[root@localhostbackups]#lltotal17328900-rwxrwxrwx1gitgit17744793600Jul514:471530773117_2018_07_05_gitlab_backup.tar
3. 执行数据恢复
执行下面的命令进行恢复:后面再输入两次yes就完成恢复了。
gitlab-rakegitlab:backup:restoreBACKUP=1530773117_2018_07_05_gitlab_backup.tar
PS:根据版本不同恢复时可能有点小区别
06 附录1 常用命令#默认的log主目录为/var/log/gitlab/#检查redis的日志sudogitlab-ctltailredis#检查postgresql的日志sudogitlab-ctltailpostgresql#检查gitlab-workhorse的日志sudogitlab-ctltailgitlab-workhorse#检查logrotate的日志sudogitlab-ctltaillogrotate#检查nginx的日志sudogitlab-ctltailnginx#检查sidekiq的日志sudogitlab-ctltailsidekiq#检查unicorn的日志sudogitlab-ctltailunicornsudogitlab-ctlstatus//检查所依赖的服务是否运行sudogitlab-ctltail//检查gitlab所依赖的服务是否在运行时出错sudogitlab-rakegitlab:check//检查的配置是否正确,如果有错误,请根据提示解决它07 FAQ错误1
error:proxyRoundTripper:GET"/"failedwith:"dialunix/var/opt/gitlab/gitlab-rails/sockets/gitlab.socket:connect:nosuchfileordirectory"
原因:unicorn 没有正常启动
解决:查看unicorn的日志, /var/log/gitlab/unicorn/*.log, 一般为端口冲突或是权限问题。依赖相应的日志,希望你可以很好的解决,enjoy it.
docs.gitlab.com/ee/developm…
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。