簡介:
GitLab 是一個用于倉庫管理系統(tǒng)的開源項(xiàng)目,使用Git作為代碼管理工具,并在此基礎(chǔ)上搭建起來的web服務(wù)。安裝方法是參考GitLab在GitHub上的Wiki頁面。成都創(chuàng)新互聯(lián)公司長期為成百上千客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為碌曲企業(yè)提供專業(yè)的成都網(wǎng)站設(shè)計、成都網(wǎng)站制作,碌曲網(wǎng)站改版等技術(shù)服務(wù)。擁有十年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。
特點(diǎn):
1.Web框架使用RubyonRails。
2.基于MIT代碼發(fā)布協(xié)議。
3.需要gitolite協(xié)同工作
一、安裝依賴
1.安裝ssh ??
sudo yum install -y curl policycoreutils-pythonopenssh-server
2.將SSH服務(wù)設(shè)置成開機(jī)自啟動 ,啟動SSH服務(wù)
sudo systemctl enable sshd
sudo systemctl start sshd
3.安裝Postfix
sudo yum install postfix
4.將postfix服務(wù)設(shè)置成開機(jī)自啟動,并啟動
sudo systemctl enable postfix
sudo systemctl start postfix
5.安裝policycoreutils-python
yum install policycoreutils-python
二、安裝gitlab
1.gitlab rpm包下載
centos 6系統(tǒng)的下載地址:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6
centos 7系統(tǒng)的下載地址:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-11.11.5-ce.0.el7.x86_64.rpm
2.gitlab rpm包安裝
rpm -i gitlab-ce-11.11.5-ce.0.el7.x86_64.rpm
三、修改gitlab配置文件指定服務(wù)器ip和自定義端口
1.修改etc/gitlab/gitlab.rb文件中external_url的值,分配一個不會沖突的端口號,默認(rèn)80
2.重置并啟動GitLab
gitlab-ctl reconfigure
gitlab-ctl restart