gitlab服务安装手册
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gitlab服务安装手册相关的知识,希望对你有一定的参考价值。
一、gitlab安装(根据操作系统版本下载对应的安装包)
1、下载安装包(本次安装是在centos 6版本操作系统环境下,不同的操作系统与系统版本都会有对应的安装包)
https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/6/gitlab-ce-8.4.1-ce.0.el6.x86_64.rpm
如果下载不了,请翻墙下载
2、安装软件包
rpm -ivh gitlab-ce-8.4.1-ce.0.el6.x86_64.rpm
3、修改端口配置,避免端口冲突
nginx默认使用了80端口,unicorn默认使用的是8080端口
修改/etc/gitlab/gitlab.rb,删除# unicorn[‘port‘] = 8080的注释,将8080修改为9091
加载配置并启动:gitlab-ctl reconfigure
修改nginx配置文件:/var/opt/gitlab/nginx/conf/gitlab-http.conf,将端口改为9090
4、配置邮箱发送
GitLab中使用postfix进行邮件发送。因此,可以卸载系统中自带的sendmail。使用yum list installed查看系统中是否存在sendmail,若存在,则使用yum remove sendmail指令进行卸载。
测试系统是否可以正常发送邮件:echo "Test mail from postfix" | mail -s "Test Postfix" [email protected]
当邮箱收到系统发送来的邮件时,将系统的地址复制下来,如:[email protected],打开/etc/gitlab/gitlab.rb,将
#gitlab_rails[‘gitlab_email_from‘] = ‘[email protected]‘ 修改为 gitlab_rails[‘gitlab_email_from‘] = ‘[email protected]‘
保存后,执行sudo gitlab-ctl reconfigure重新编译GitLab。如果邮箱的过滤功能较强,请添加系统的发件地址到邮箱的白名单中,防止邮件被过滤。
5、修改访问地址:
打开/etc/gitlab/gitlab.rb,将gitlab.example.com替换成112.74.134.38:9090
6、登陆:http://ip
默认用户名密码
Username: root
Password: 5iveL!fe
二、gitlab备份
1、创建备份
gitlab-rake gitlab:backup:create
使用以上命令会在/var/opt/gitlab/backups目录下创建一个名称类似为1448938055_gitlab_backup的压缩包, 这个压缩包就是Gitlab整个的完整部分, 其中开头的1448938055是备份创建的日期
2、修改备份文件默认目录
可以通过修改/etc/gitlab/gitlab.rb来修改默认存放备份文件的目录:gitlab_rails[‘backup_path‘] = ‘/mnt/backups‘
3、自动备份
可以通过创建定时任务进行备份
三、Gitlab 数据恢复
1、停止相关数据连接服务
gitlab-ctl stop unicorn
gitlab-ctl stop sidekiq
2、从1448938055编号备份中恢复
gitlab-rake gitlab:backup:restore BACKUP=1448938055
3、启动Gitlab
gitlab-ctl start
本文出自 “我的运维时光” 博客,请务必保留此出处http://aaronsa.blog.51cto.com/5157083/1740519
以上是关于gitlab服务安装手册的主要内容,如果未能解决你的问题,请参考以下文章