gitlab 8.16.4 安裝總結

Gitlab安裝說明請參照https://www.gitlab.cc/downloads/#centos6nginx

 

1. 安裝配置依賴項git

如想使用Postfix來發送郵件,在安裝期間請選擇'Internet Site'. 您也能夠用sendmai或者 配置SMTP服務使用SMTP發送郵件.redis

在 Centos 6 和 7 系統上, 下面的命令將在系統防火牆裏面開放HTTP和SSH端口.sql

sudo yum install curl openssh-server openssh-clients postfix cronie

sudo service postfix start

sudo chkconfig postfix on

sudo lokkit -s http -s ssh

2. 添加GitLab倉庫,並安裝到服務器上centos

curl -sS http://packages.gitlab.cc/install/gitlab-ce/script.rpm.sh | sudo bash

sudo yum install gitlab-ce

若是你不習慣使用命令管道的安裝方式, 你能夠在這裏下載 安裝腳本 或者 手動下載您使用的系統相應的安裝包(RPM/Deb) 而後安裝瀏覽器

curl -LJO https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6/gitlab-ce-XXX.rpm

rpm -i gitlab-ce-XXX.rpm

3. 啓動GitLabbash

sudo gitlab-ctl reconfigure

4. 使用瀏覽器訪問GitLab服務器

首次訪問GitLab,系統會讓你從新設置管理員的密碼,設置成功後會返回登陸界面.ssh

默認的管理員帳號是root,若是你想更改默認管理員帳號,請輸入上面設置的新密碼登陸系統後修改賬號名.curl

 

注意事項:

一、 因爲下載速度太慢,推薦使用https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/中下載的rpm安裝包進行安裝,我使用的yum下gitlab-ce-8.16.4-ce.0.el6.x86_64.rpm

二、 安裝gitlab會默認安裝nginx、postgresql、redis等軟件

三、 Gitlab默認使用80端口及8080端口,其中unicorn使用8080端口,如端口被佔用,需解決端口衝突

四、 修改unicorn的8080端口可在/etc/gitlab/gitlab.rb中打開# unicorn['port'] = 8080 和 # gitlab_workhorse['auth_backend'] = http://localhost:8080 的註釋,並修改8080端口,保存後運行sudo gitlab-ctl reconfigure便可。

五、 修改80端口可在/etc/gitlab/gitlab.rb中打開nginx['listen_port'] = nil,並修改nil爲所需端口好,保存後運行sudo gitlab-ctl reconfigure便可。

同理,相應的其餘組件也在gitlab.rb中修改端口號

相關文章
相關標籤/搜索