标签:yun lease pretty post 程序配置 nbsp core 复用 -o
GitLab 是一个用于仓库管理系统的开源项目。使用Git作为代码管理工具,并在此基础上搭建起来的web服务,它集成了Github的可视化功能,方便开发人员协同工作.
GitLab是一个利用 Ruby on Rails
开发的开源应用程序,实现一个自托管的Git项目仓库,可通过Web界面进行访问公开的或者私人项目。
GitLab拥有与Github类似的功能,能够浏览源代码,管理缺陷和注释。可以管理团队对仓库的访问,它非常易于浏览提交过的版本并提供一个文件历史库。它还提供一个代码片段收集功能可以轻松实现代码复用,便于日后有需要的时候进行查找。
安装 :
环境 :
CentOS Linux release 7.3.1611 (Core)
192.168.1.57
实施操作:
1.更新下载epel源
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup -----备份epel
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
yum clean && yum makecache ----清理并生成缓存
2.相关依赖安装
yum install curl policycoreutils openssh-server openssh-clients postfix -y
systemctl start postfix
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
yum install -y git
3.gitlab-ce安装
阿里源下载文件很大1G,此处使用清华大学镜像源
vim /etc/yum.repos.d/gitlab-ce.repo
[gitlab-ce]
name=gitlab-ce
baseurl=http://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7
repo_gpgcheck=0
gpgcheck=0
enabled=1
gpgkey=https://packages.gitlab.com/gpg.key
yum makecache
&& yum install -y gitlab-ce
4.配置并启动gitlab-ce
gitlab-ctl reconfigure 配置文件重载
时间可能比较长,耐心你等待即可!----
gitlab-ctl stop
|start|restart|status
/var/opt/gitlab 相关程序配置目录
提示:启动gitlab需要时间!可能不能立刻出gitlab页面,nginx的welcome页面出来后等待即可
5.Web:访问:192.168.1.57
标签:yun lease pretty post 程序配置 nbsp core 复用 -o
原文地址:http://www.cnblogs.com/ruanqj/p/7390922.html