我的系统是centos6.8的系统,先配置yum源:
https://mirror.tuna.tsinghua.edu.cn/help/epel/ 这里写的配置epel源比较详细我就不写了,写下gitlab的源的内容:
新建 /etc/yum.repos.d/gitlab-ce.repo,添加以下内容:
[gitlab-ce] name=gitlab-ce baseurl=http://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6 repo_gpgcheck=0 gpgcheck=0 enabled=1 gpgkey=https://packages.gitlab.com/gpg.key
如果是7就把baseurl换成这个地址就行其他都一样的:
https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/
https://about.gitlab.com/downloads/#centos7 官方的7安装方式 可以选择系统版本查看
先安装依赖包
yum install curlopenssh-server openssh-clients postfix cronie –y service postfixstart 启动服务 chkconfig postfixon 设置开机启动 安装主包 yum install gitlab-ce –y 社区版
Host 一定要加自己的主机名的解析
/etc/gitlab/gitlab.rb 修改这里里面的配置
external_url‘http://192.168.61.128‘ 我只修改了url这里因为我没有域名就写了IP地址。
其他的配置自己百度吧貌似很多配置都注释了。
每次修改完了/etc/gitlab/gitlab.rb这个配置都要执行一个命令让配置生效 会出很多消息等等完成。下面是运行完成了命令的结果
gitlab-ctlstart|stop|status|restart
作为一个运维备份是必须的,出了问题,需要及时恢复,备份配置和数据两个部分
配置就是etc/gitlab里面的文件
直接运行
tar -zPcf $(date"+etc-gitlab_%Y%m%d_%H%M%S.tar.gz") /etc/gitlab
打包备份就行
备份数据文件:
默认数据备份目录是/var/opt/gitlab/backups,手动创建备份文件:
# Omnibus 方式安装使用以下命令备份
gitlab-rakegitlab:backup:create
日常备份,添加 /etc/crontab,运行vim /etc/crontab
# 每天1点执行备份
0 1 * * * root /opt/gitlab/bin/gitlab-rake gitlab:backup:create CRON=1
如要修改备份周期和目录,在/etc/gitlab/gitlab.rb中修改以下两个选项(修改配置后记得运行gitlab-ctl reconfigure)
# 设置备份周期为7天 - 604800秒,计算器自己计算7天默认的
gitlab_rails[‘backup_keep_time‘]= 604800
# 备份目录的修改
gitlab_rails[‘backup_path‘]= ‘/backups‘
还有很多其他选择需要自己百度查找了。
恢复之前:确保备份文件所安装 GitLab 和当前要恢复的 GitLab 版本一致。首先,恢复配置文件(就是把以前打包的解包放到gitlab目录替换):
cat/opt/gitlab/embedded/service/gitlab-rails/VERSION 这个是查看版本的信息。
配置文件我就不写了直接恢复就行了
数据的恢复:
# 停止连接数据库的进程
gitlab-ctl stopunicorn gitlab-ctl stopsidekiq
# 恢复1484121231这个备份文件,将覆盖GitLab数据库的全部内容!
gitlab-rakegitlab:backup:restore BACKUP=1484121231
#会让你选择yes no
输入yes后
# 启动 GitLab服务
gitlab-ctl restart
# 检查 GitLab服务正常否
gitlab-rakegitlab:check SANITIZE=true
最后我登陆查看正常
参考:https://about.gitlab.com/downloads/#centos6
原文:http://shaonian.blog.51cto.com/2975261/1891124