# yum install -y vim
# yum install -y wget
# cd /usr/local
# wget
1.2 關閉防火牆# service iptables stop
# chkconfig iptables off
2.1 安裝git# yum install -y git
2.2 轉殖獲取漢化版本庫# cd /usr/local
# git clone
3.1 安裝gitlab的依賴項# yum -y install policycoreutils openssh-server openssh-clients postfix cronie policycoreutils-python
3.2 啟動postfix,並設定為開機啟動# service postfix start
# chkconfig postfix on
3.3 安裝rpm包# cd /usr/local
# rpm -ivh gitlab-ce-10.0.2-ce.0.el6.x86_64.rpm
3.4 修改配置檔案gitlab.rb# vim /etc/gitlab/gitlab.rb
將external_url變數的位址修改為gitlab所在centos的ip位址
修改gitlab預設埠
4.1 停止gitlab服務
# gitlab-ctl stop
4.2 比較漢化標籤和原標籤,匯出 patch 用的 diff 檔案到/root下# cd /usr/local/gitlab
# git diff v10.0.2 v10.0.2-zh > ../10.0.2-zh.diff
4.3 將10.0.2-zh.diff作為補丁更新到gitlab中# cd /usr/local
# yum install patch -y
# patch -d /opt/gitlab/embedded/service/gitlab-rails -p1 < 10.0.2-zh.diff
tips:重啟gitlab
# gitlab-ctl reconfigure
# gitlab-ctl restart
伺服器搭建gitlab並配置CI CD
1.安裝依賴包 sudo yum install y curl policycoreutils python openssh server2.設定ssh開機自啟動並啟動ssh服務。sudo systemctl enable sshd sudo systemctl start sshd 3.安裝pos...
Gitlab 快速搭建
這篇部落格主要講一下gitlab如何進行快速搭建 安裝最快並且方便的安裝就是使用yum原來進行安裝,在安裝gitlab前的準備就是對yum源進行配置。gitlab的yum源有官網也有其他的,這裡我用的是清華大學的源。如下操作 vim etc yum.repos.d gitlab ce.repo gi...
gitlab搭建之旅
終於,我的leader接受了我使用git進行版本管理的建議 接下來就是實踐之後總結的gitlab搭建之旅的詳細步驟了 我使用的是離線安裝 因為公司內網網速不太好 安裝包來自於清華大學tuna開源映象站 登入伺服器 root許可權 ssh username ip將rpm安裝包上傳到伺服器 上傳失敗時可...