Centos7 上搭建GitLab 本地代码仓库

一.安装依赖软件

$ yum -y install policycoreutils openssh-server openssh-clients postfix

二.设置postfix开机自启,并启动,postfix支持gitlab发信功能

$ systemctl enable postfix && systemctl start postfix

三.下载gitlab 安装包

# centos 7系统的下载地址:

$ wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-8.0.0-ce.0.el7.x86_64.rpm

# 安装

$ rpm -i gitlab-ce-8.0.0-ce.0.el7.x86_64.rpm

四.修改gitlab 配置文件,指定服务器ip及端口号

$  vim  /etc/gitlab/gitlab.rb

Centos7 上搭建GitLab 本地代码仓库_第1张图片

 五.重新启动gitlab

$  gitlab-ctl reconfigure

$  gitlab-ctl restart

# 提示“ok: run:”表示启动成功

六.访问GitLab页面

# 如果没有域名,直接输入服务器ip和指定端口进行访问

# 初始账户: root 密码: 5iveL!fe

# 第一次登录后会提示修改密码

这样本地GitLab仓库就搭建好了!

你可能感兴趣的:(linux,MQS,GitLab,本地代码仓库)