開(kāi)發(fā)環(huán)境:
操作系統(tǒng) CentOS Linux release 8.2.2004 (Core)
CPU Intel(R) Xeon(R) Platinum 8269CY CPU @ 2.50GH
內(nèi)存 3590MB (安裝后內(nèi)存水位在2800M,2G內(nèi)存就別玩了)
1勘畔,安裝依賴
yum install -y curl policycoreutils-python openssh-server
centos8沒(méi)有policycoreutils-python yum源兔综,不用管
2,啟動(dòng)ssh并設(shè)置為開(kāi)機(jī)自啟動(dòng)
systemctl enable sshd
systemctl start sshd
3,添加http服務(wù)到firewalld,pemmanent表示永久生效板壮,若不加--permanent系統(tǒng)下次啟動(dòng)后就會(huì)失效
systemctl start firewalld
firewall-cmd --permanent --add-service=http
systemctl reload firewalld
4,啟動(dòng)postfix
Failed to start postfix.service: Unit postfix.service not found
首先看一下服務(wù)列表里有沒(méi)有這個(gè)服務(wù):
systemctl list-unit-files --type=service
如果有的話:
systemctl daemon-reload
沒(méi)有的話 :
sudo yum install -y postfix
systemctl enable postfix
systemctl start postfix
5,下載gitlab
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el8/gitlab-ce-12.10.1-ce.0.el8.x86_64.rpm
6,安裝
rpm -i gitlab-ce-12.10.1-ce.0.el8.x86_64.rpm
成功如圖:
7用爪,編輯ip和端口
vim /etc/gitlab/gitlab.rb
這個(gè)文件大致都是注釋掉的,只有這一句由蘑,大概在29行辽装,改成自己的地址
external_url 'http://localhost:8081'
這一步會(huì)很長(zhǎng)
gitlab-ctl reconfigure
gitlab-ctl restart
增加NGINX配置,將你的網(wǎng)址 xxx.xxxxxxxx.xx 綁定到 http://localhost:8081
server{
listen 80 ;
server_name xxx.xxxxxxxx.xx ;
client_max_body_size 200m;
location / {
root html;
index index.html index.htm;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:8081;
}
}
http{
client_max_body_size 200m; // nginx 配置文件 http層級(jí)也要加 否則不生效
}
8,訪問(wèn)
如果一直無(wú)法響應(yīng)帮碰,可以關(guān)閉防火墻
systemctl stop firewalld
重新配置并啟動(dòng)
gitlab-ctl reconfigure
gitlab-ctl restart
GitLab 常用命令
gitlab-ctl start 啟動(dòng)所有 gitlab 組件;
gitlab-ctl stop 停止所有 gitlab 組件拾积;
gitlab-ctl restart 重啟所有 gitlab 組件殉挽;
gitlab-ctl status 查看服務(wù)狀態(tài);
9殷勘,成功如圖:
10此再,第一次登錄需要修改root密碼, 密碼8位以上,修改完就可以登錄
使用設(shè)置的新密碼,登錄
11玲销,修改project的默認(rèn)域名和端口
注意:gitlab安裝時(shí)自帶了一個(gè)NGINX输拇。
vim /etc/gitlab/gitlab.rb
external_url 'http://git.xxx.com' //域名:nginx端口 此處80為獨(dú)立nginx端口
nginx['enable'] = false //禁用自帶nginx
gitlab_workhorse['listen_network'] = "tcp" //允許gitlab-workhorse監(jiān)聽(tīng)TCP
gitlab_workhorse['listen_addr'] = "127.0.0.1:8081" //設(shè)置gitlab端口為8091 注意自己的 8091未占用
gitlab_rails['trusted_proxies'] = ['git.xxx.com'] // 設(shè)置gitlab域名
gitlab-ctl reconfigure
gitlab-ctl restart
完全卸載刪除gitlab
1、停止gitlab
gitlab-ctl stop
2贤斜、卸載gitlab(注意這里寫(xiě)的是gitlab-ce)
rpm -e gitlab-ce
3策吠、查看gitlab進(jìn)程
ps aux | grep gitlab
4逛裤、殺掉第一個(gè)進(jìn)程(就是帶有好多.............的進(jìn)程)
kill -9 714
殺掉后,在ps aux | grep gitlab確認(rèn)一遍猴抹,還有沒(méi)有g(shù)itlab的進(jìn)程
5带族、刪除所有包含gitlab文件
find / -name gitlab | xargs rm -rf