GitLab代码仓库构建

GitLab代码仓库构建

GitLab代码托管仓库最近火,原因是它是DevOps中中要的一环,与Git相比, 除了涵盖Git所有功能, 同时又提供方便的后台管理, 非常适合企业使用, 下面简单介绍下GitLab的搭建, 当然, 官方文档有提供相应的方法, 但实际操作过程中, 并没有那么顺利.

安装依赖

yum install -y  curl policycoreutils openssh-server openssh-clients
systemctl start sshd  # sshd服务默认是启动的,我们再启动一下以防万一
systemctl enable sshd 

这里默认关闭了防火墙规则

下载安装GitLab

curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
yum install -y gitlab-ce  # 安装GitLab
gitlab-ctl reconfigure  # 配置并启动

如果当前服务器的80和8080端口均未被占用, 则直接可以通过服务器的ip或域名访问到后台

http://ip或域名

修改GitLab配置文件

vi /etc/gitlab/gitlab.rb
external_url = 'http://www.js.com'  # 指定host地址
gitlab_rails['time_zone'] = 'PRC'  # 修改时区
# 如果你的80端口和8080端口已经被占用,要修改端口
unicorn['port'] = 9990  # 如果需要改

重新加载服务

gitlab-ctl reconfigure

如果在执行gitlab-ctl reconfigure,报GitLab报External URL must include a FQDN错误,解决如下

vi /etc/gitlab/gitlab.rb
external_url 'www.js.com'
external_url = 'www.js.com'

重启服务

gitlab-ctl restart

浏览器访问www.js.com (域名访问要在Windows的hosts文件中写入映射关系)
GitLab代码仓库构建

上一篇:EMQX 取消匿名登录和添加、删除用户


下一篇:CentOS7 部署 GitLab