一.安裝依賴軟體
$ yum -y install policycoreutils openssh-server openssh-clients postfix
二.設定postfix開機自啟,並啟動,postfix支援gitlab發信功能
systemctl enable postfix && systemctl start postfix
wget
安裝rpm -i gitlab-ce-8.0.0-ce.0.el7.x86_64.rpm
四.修改gitlab 配置檔案,指定伺服器ip及埠號
vim /etc/gitlab/gitlab.rb
五.重新啟動gitlab
載入配置檔案:gitlab-ctl reconfigure
重啟:gitlab-ctl restart
檢視狀態:gitlab-ctl status
關閉:gitlab-ctl stop
開啟:gitlab-ctl start
六.訪問gitlab頁面
# 如果沒有網域名稱,直接輸入伺服器ip和指定埠進行訪問
# 初始賬戶: root 密碼: 5ivel!fe
# 第一次登入後會提示修改密碼
這樣本地gitlab倉庫就搭建好了!
注意1.external_url 一定要加上 'http://'
2.安裝的gitlab預設的是80埠 要記得修改埠
3.如果想要在windows上使用網域名稱訪問 首先修改host檔案 虛擬機器的ip指向某個網域名稱
172.168.100.57 git.test.com
主要是虛擬機器裡面的配置很重要!!!
先安裝nginx
並且要保證在windows上可以訪問虛擬機器ip 如果訪問不了 記得關閉防火牆即可
nginx反向**配置如下 (監聽的依然是80埠 但是下面的修改為自定義的埠即可!)
gitlab裡面的配置直接使用ip即可,不可以使用網域名稱
server
}
這樣既可訪問 就可以做到從windows本地進入虛擬機器上的gitlab 然後進行**提交
部分參考部落格
Windows本地Apache設定虛擬機器
1 windows下的host檔案 最下邊新增 127.0.0.1 local.mp.com 127.0.0.1 local.crawler.com 127.0.0.1 local.taobao.com 127.0.0.1 local.newtp.com 2 確定 http.conf 檔案裡的 vh...
Linux虛擬機器搭建本地yum源
本教程是在虛擬機器裡安裝red hat enterprise linux 7 以其為例使用iso檔案進行yum本地源的配置。所使用的軟體如下 1 虛擬機器 vmware workstation 11.0.0 build 2305329 2 linux red hat enterprise linux...
搭建KVM虛擬機器
使用的系統是centos7 物理機ip 172.40.58.82 首先需要將物理機原先有的環境清空,再建立新的環境來支援虛擬機器的搭建 1 設定yum源 使用用centos7 1708.iso這個映象 將centos7 1708.iso 映象移動到 var lib libvirt images is...