Linux(centos7)搭建gitlab
https://about.gitlab.com/install/#centos-7 官方安裝gitlab的方法
這裡安裝社群版
先執行官方文件的第一步
防火牆開啟HTTP和SSH訪問
sudo yum install -y curl policycoreutils-python openssh-server
sudo systemctl enable sshd
sudo systemctl start sshd
sudo firewall-cmd --permanent --add-service=http
sudo systemctl reload firewalld
sudo yum install postfix
sudo systemctl enable postfix
sudo systemctl start postfix
第二步 社群版gitlab安裝 https://packages.gitlab.com/gitlab/gitlab-ce 也可以先把rpm下載好https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7
這裡使用線上下載
wget --content-disposition https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/7/gitlab-ce-11.4.5-ce.0.el7.x86_64.rpm/download.rpm
下載完成
安裝rpm
rpm -ivh gitlab-ce-11.4.5-ce.0.el7.x86_64.rpm
安裝成功
修改gitlab的訪問地址。
vim /etc/gitlab/gitlab.rb
http://192.168.79.129 (預設埠80)
儲存之後更新配置
gitlab-ctl reconfigure (這一步需要等個幾分鐘)
gitlab-ctl restart
這裡就完成了
注意 linux的記憶體要配置成4G以上,不然linux會很卡,訪問不了
直接訪問http://192.168.79.129就能進到頁面