yum一键安装gitlab

                               yum一键安装gitlab(centos7.x)

1.实验环境

[root@gitlab ~]#  cat  /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)

官网安装指南:https://about.gitlab.com/install/#centos-7

2.添加gitlab的yum源仓库

[root@gitlab ~]# curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash

3.安装gitlab

[root@gitlab ~]#  yum  -y  install  gitlab-ce

PS:  gitlab-ce 是社区版,免费的;gitlab-ee 是企业版

4.配置gitlab,设置配置文件/etc/gitlab/gitlab.rb 中的 external_url

yum一键安装gitlab_第1张图片

如果更改默认端口808001(注意不要修改为8080否则会和默认的unicorn['port'] = 8080冲突),需要修改配置文件(1)和(2):

(1)gitlab配置文件 /etc/gitlab/gitlab.rb

   external_url 'http://192.168.33.66' -----> external_url 'http://192.168.33.66:8001',如下图所示:

yum一键安装gitlab_第2张图片

(2)nginx配置文件 /var/opt/gitlab/nginx/conf/gitlab-http.conf

yum一键安装gitlab_第3张图片

5.重载配置生效,然后重启服务

[root@gitlab ~]# gitlab-ctl reconfigure
[root@gitlab ~]# gitlab-ctl restart

6.访问主页

  http://192.168.33.66:8001

yum一键安装gitlab_第4张图片

用户名root,首次登陆需设定密码,而且密码至少8位

yum一键安装gitlab_第5张图片

 

 

你可能感兴趣的:(运维)