gitlab 安裝部署
阿新 • • 發佈:2019-03-21
修改 -i curl res https tla blog emctl ssh 1.安裝相關依賴
yum install -y curl openssh-server openssh-clients postfix cronie policycoreutils-python wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-8.6.7-ce.0.el7.x86_64.rpm
yum install -y curl openssh-server openssh-clients postfix cronie policycoreutils-python
2.啟動postfix,並設置位開機啟動
systemctl restart postfix
systemctl enable postfix
3.防火墻設置
#此命令需在防火墻開啟後使用
firewall-cmd --add-service=http --permanent
firewall-cmd –reload
4.關閉防火墻
systemctl stop firewalld
setenforce 0
5.安裝gitlab
6.安裝rpm包
rpm -ivh gitlab-ce-8.6.7-ce.0.el7.x86_64.rpm
7.修改配置文件gitlab.rb
Vim /etc/gitlab/gitlab.rb
查找到
external_url 這個屬性,將其改為ip+地址(external_url ‘http://localhost‘)
8.加載配置文件並啟動
gitlab-ctl reconfigure
gitlab-ctl restart
全部成功即可
9.首次登陸需要自己設置密碼
默認賬號為 : root
設置密碼 :12345678
註:gitlab在服務器中的默認代碼存放的位置是
/var/opt/gitlab/git-data/repositories
訪問IP頁面測試成功:
gitlab 安裝部署