您好,登錄后才能下訂單哦!
這篇文章給大家分享的是centos 7安裝配置Gitlab的步驟,相信大部分人都還不知道怎么安裝配置,為了讓大家學(xué)會,給大家總結(jié)了以下內(nèi)容,話不多說,一起往下看吧。
操作系統(tǒng) | 內(nèi)存 | CPU |
---|---|---|
centos 7 | 4G以上 | 雙核 |
[root@gitlab ~]# yum -y install epel-release curl openssh-server openssh-clients postfix cronie policycoreutils-python
方法一:通過清華大學(xué)的開源鏡像站獲取軟件包(推薦)
[root@gitlab ~]# wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-12.3.5-ce.0.el7.x86_64.rpm
方法二:通過Gitlab官網(wǎng)來獲取軟件包(網(wǎng)絡(luò)穩(wěn)定時使用)
[root@gitlab ~]# wget --content-disposition https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/7/gitlab-ce-12.3.5-ce.0.el7.x86_64.rpm/download.rpm
[root@gitlab ~]# rpm -ivh gitlab-ce-12.3.5-ce.0.el7.x86_64.rpm
#安裝時間較長,耐心等待,安裝過程中會出現(xiàn)gitlab的logo
[root@gitlab ~]# vim /etc/gitlab/gitlab.rb #修改gitlab的配置文件
……………………………… #省略部分內(nèi)容
external_url 'http://192.168.1.8' #將此處改為本機(jī)的IP地址,便于訪問
[root@gitlab ~]# gitlab-ctl reconfigure #重新配置gitlab,就算不修改配置文件,也需要在安裝后重新配置gitlab
如圖:
可以訪問到表示沒有問題,但是都是英文界面,對于英文不好的我表示很是頭疼,還好可以通過一些方法使其漢化,方法如下!
[root@gitlab ~]# head -1 /opt/gitlab/version-manifest.txt #查看gitlab的版本
gitlab-ce 12.3.5
[root@gitlab ~]# git clone https://gitlab.com/xhang/gitlab.git -b v12.3.5-zh
#獲取漢化補(bǔ)丁包(注意需與gitlab的版本保持一致)
[root@gitlab ~]# cd gitlab/ #進(jìn)入剛才clone下來的gitlab目錄
[root@gitlab gitlab]# git diff v12.3.5 v12.3.5-zh > /root/v12.3.5-zh.diff
#用diff將英文原版與中文版的對比生成.diff文件
[root@gitlab gitlab]# gitlab-ctl stop #停止gitlab
[root@gitlab gitlab]# yum -y install patch
[root@gitlab gitlab]# patch -d /opt/gitlab/embedded/service/gitlab-rails -p1 < ../v12.3.5-zh.diff
#將剛才的diff文件做為補(bǔ)丁導(dǎo)入到gitlab中
#該命令執(zhí)行過程中,一路回車跳過即可
[root@gitlab gitlab]# gitlab-ctl start #啟動gitlab
[root@gitlab gitlab]# gitlab-ctl reconfigure #重新配置gitlab
如圖:
[root@gitlab ~]# ssh-keygen -t rsa -C "1454295320@qq.com"
#生成秘鑰對,一路回車即可,“-C”后是自己的郵箱
[root@gitlab ~]# cat ~/.ssh/id_rsa.pub #查看生成的公鑰并復(fù)制
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvNm+nXc59ugb0SGr9iMHDSFjvmdSJk0ORuX3hbjt822Y2ofXysUrIuBSQ1Jn0Rss/LPU54K32i4bIDsa/jD9gIpN/GqU+YP1MQ9bEw3YVUONAs+nYeWJWahQ1rMTeM0HC9aKvNTrNsOqrXIboJymBrs6Odt+1NnZsYHMwA/KlpYCFsi0HQgBzsLbrD5v++cIDTvM/V4rMq6fqFsfWoYYMHWc8JeNMl/aWJV1RhJpt7wm17FEv3XiH+wyoef5ZYI60IkH5qMJkjWhKcRXCWG5SH3nphUb1fmktB4DH92TW/EGw///VQEnE7tkpNjyJpOTXDuHnEk2tw43cctDN2sJH 1454295320@qq.com
回到web頁面,操作如下:
如圖:
回到服務(wù)器上輸入測試的命令,如下:
[root@gitlab ~]# git config --global user.name "Administrator"
[root@gitlab ~]# git config --global user.email "admin@example.com"
[root@gitlab ~]# git clone git@192.168.1.8:root/test01.git
#克隆到本地,根據(jù)提示輸入“yes”即可!
[root@gitlab ~]# cd test01/
[root@gitlab test01]# touch README.md
[root@gitlab test01]# git add README.md
[root@gitlab test01]# git commit -m "add README"
[root@gitlab test01]# git push -u origin master
刷新web頁面即可,如圖:
當(dāng)你從遠(yuǎn)端倉庫克隆時,實際上git自動把本地的master分支和遠(yuǎn)端的master分支對應(yīng)起來了,并且遠(yuǎn)程倉庫的默認(rèn)名稱是origin。
[root@gitlab test01]# git remote #簡潔信息
origin
[root@gitlab test01]# git remote -v #詳細(xì)信息
origin git@192.168.1.8:root/test01.git (fetch)
origin git@192.168.1.8:root/test01.git (push)
[root@gitlab test01]# git checkout -b dev #創(chuàng)建并切換到dev分支
[root@gitlab test01]# git push origin dev #將本地的分支推送到遠(yuǎn)程倉庫
刷新頁面之后,如圖:
當(dāng)我們整個小組對同一個分支進(jìn)行開發(fā)時,如果在你提交之前,你的同事已經(jīng)修改了分支的內(nèi)容并推送到遠(yuǎn)端倉庫,而碰巧你也對同樣的文件做了修改,并試圖推送,那么會推送失敗,因為你的同事的最新提交的數(shù)據(jù)和你試圖提交的數(shù)據(jù)有沖突(你本地的內(nèi)容比遠(yuǎn)端倉庫的舊了),解決的辦法會在提示你推送失敗的返回信息中給出,這里我們模擬一下這一過程。
#進(jìn)入另一個目錄,克隆遠(yuǎn)端倉庫,模擬多人操作
[root@gitlab test01]# cd /tmp
[root@gitlab tmp]# git clone git@192.168.1.8:root/test01.git
[root@gitlab tmp]# cd test01/
[root@gitlab test01]# git checkout -b etc #重新創(chuàng)建一個分支并切換
[root@gitlab test01]# echo -e "touch /tmp/test01" > tmp.txt
[root@gitlab test01]# git add tmp.txt
[root@gitlab test01]# git commit -m "commmit from /tmp"
[root@gitlab test01]# git push origin etc #將新修改的內(nèi)容推送到遠(yuǎn)端
回到web界面進(jìn)行刷新,即可看到新提交的分支:
#上述操作是在/tmp目錄下執(zhí)行的,接下來的操作在/root目錄下執(zhí)行:
[root@gitlab test01]# cd /root/test01/
[root@gitlab test01]# git checkout -b etc
[root@gitlab test01]# echo "touch /root/test01.txt" > root.txt
[root@gitlab test01]# git add root.txt
[root@gitlab test01]# git commit -m "commit from /root"
[root@gitlab test01]# git push origin etc
#再次推送,將會出現(xiàn)以下錯誤
To git@192.168.1.8:root/test01.git
! [rejected] etc -> etc (fetch first)
error: 無法推送一些引用到 'git@192.168.1.8:root/test01.git'
提示:更新被拒絕,因為遠(yuǎn)程版本庫包含您本地尚不存在的提交。這通常是因為另外
提示:一個版本庫已推送了相同的引用。再次推送前,您可能需要先合并遠(yuǎn)程變更
提示:(如 'git pull')。
提示:詳見 'git push --help' 中的 'Note about fast-forwards' 小節(jié)。
[root@gitlab test01]# git pull origin etc #將遠(yuǎn)端的etc分支pull到本地
[root@gitlab test01]# ls #可以看出在/tmp目錄下提交的文件就存在了
README.md root.txt tmp.txt
[root@gitlab test01]# git push origin etc #然后再次將本地的dev分支推送到gitlab,即可成功
再次刷新web頁面,etc分支下就會有了我們在/tmp目錄和/root目錄下提交的所有內(nèi)容,如圖:
[root@gitlab test01]# git checkout master #切換至master分支
[root@gitlab test01]# git merge etc #合并etc分支
[root@gitlab test01]# ls #查看合并后的分支下內(nèi)容
README.md root.txt tmp.txt
[root@gitlab test01]# git add .
[root@gitlab test01]# git commit -m "提交"
[root@gitlab test01]# git push origin master #推送到遠(yuǎn)端版本庫
再次刷新web頁面,如圖:
[root@gitlab test01]# git branch -d etc #刪除本地的dev分支
[root@gitlab test01]# git branch -r -d origin/etc #刪除指定的遠(yuǎn)程分支
[root@gitlab test01]# git push origin :etc #將刪除的分支提交到遠(yuǎn)程版本庫中
[root@gitlab test01]# git branch -d dev
[root@gitlab test01]# git branch -r -d origin/dev
[root@gitlab test01]# git push origin :dev #同上
再次刷新web頁面,如下:
[root@gitlab ~]# gitlab-rails console production #必須是root用戶登錄服務(wù)器執(zhí)行該命令
irb(main):001:0> user = User.where(id: 1).first #id為1的是超級管理員
irb(main):002:0> user.password = 'yourpassword' #密碼必須至少8個字符
irb(main):003:0> user.save! #保存用戶修改信息,如沒有問題返回true
irb(main):004:0> exit #退出
再次登錄,就需要使用新密碼yourpassword進(jìn)行登錄了。
至此,centos 7安裝配置Gitlab的步驟就分享到這了,你們學(xué)會了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。