GIT-Linux(CentOS7)系統部署GitLab服務器

GIT-Linux(CentOS7)系統部署GitLab服務器

root帳號登陸html

 

1、 安裝並配置必要的依賴關係python


在CentOS系統上安裝所需的依賴:ssh,防火牆,postfix(用於郵件通知) ,wget,如下這些命令也會打開系統防火牆中的HTTP和SSH端口訪問。linux

1.安裝ssh ,命令:sudo yum install -y curl policycoreutils-pythonopenssh-servergit

如報錯ubuntu

錯誤信息:/var/run/yum.pid已被鎖定,PID爲1610的另外一個程序正在運行。vim

解決辦法: 運行:rm -f /var/run/yum.pid  刪除文件後再次運行yum可用。服務器

 

[root@localhost ~]# sudo yum install -y curl policycoreutils-pythonopenssh-server
已加載插件:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirrors.tuna.tsinghua.edu.cn
 * epel: mirrors.aliyun.com
 * extras: mirrors.huaweicloud.com
 * updates: mirrors.huaweicloud.com
軟件包 curl-7.29.0-54.el7.x86_64 已安裝而且是最新版本
沒有可用軟件包 policycoreutils-pythonopenssh-server。

 

 

2.將SSH服務設置成開機自啓動,安裝命令:sudo systemctl enable sshd  app

3.啓動SSH服務,安裝命令:sudo systemctl start sshdssh

4.安裝防火牆(若是已經安裝了防火牆而且已經在運行狀態,則可直接進行第6步)yum install firewalld systemd -ycurl

5.開啓防火牆,安裝命令:service firewalld  start

6.添加http服務到firewalld,pemmanent表示永久生效,若不加--permanent系統下次啓動後就會失效。 firewall-cmd --permanent --add-service=http

7.重啓防火牆,安裝命令:sudo systemctl reload firewalld

8.接下來,安裝Postfix以發送通知郵件,安裝命令:sudo yum install postfix

9.將postfix服務設置成開機自啓動,安裝命令:sudo systemctl enable postfix

10.啓動postfix,安裝命令:sudo systemctl start postfix

  

注:在安裝Postfix期間,可能會出現配置屏幕。選擇「Internet Site」並按enter鍵。使用您的服務器的外部DNS以「mail name」並按enter。若是出現額外的屏幕,繼續按enter鍵接受默認值。

 

11.wget 用於從外網上下載插件

檢查系統中是否已經安裝wget,使用命令若出現下圖wget相關版本描述則說明系統中已經安裝wget 若報系統找不到命令說明wget未安裝 wget -V

[root@localhost ~]# wget -V
GNU Wget 1.14 在 linux-gnu 上編譯。

+digest +https +ipv6 +iri +large-file +nls +ntlm +opie +ssl/openssl 

Wgetrc: 
    /etc/wgetrc (系統)
字符集: /usr/share/locale 
編譯: gcc -DHAVE_CONFIG_H -DSYSTEM_WGETRC="/etc/wgetrc" 
    -DLOCALEDIR="/usr/share/locale" -I. -I../lib -I../lib -O2 -g -pipe 
    -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong 
    --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic 
連接程序: gcc -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions 
    -fstack-protector-strong --param=ssp-buffer-size=4 
    -grecord-gcc-switches -m64 -mtune=generic -lssl -lcrypto 
    /usr/lib64/libssl.so /usr/lib64/libcrypto.so /usr/lib64/libz.so 
    -ldl -lz -lz -lidn -luuid -lpcre ftp-opie.o openssl.o http-ntlm.o 
    ../lib/libgnu.a 

Copyright (C) 2011 Free Software Foundation, Inc.
受權 GPLv3+: GNU GPL 第三版或更高版本
<http://www.gnu.org/licenses/gpl.html>。
這是自由軟件:您能夠自由地更改並從新分發它。
在法律所容許的範圍內,沒有任何擔保。

最初由 Hrvoje Nikšić <hniksic@xemacs.org> 編寫。
請將錯誤報告或建議寄給 <bug-wget@gnu.org>。

 

若wget未安裝則進行安裝,安裝命令:yum -y install wget

 

12.安裝vim編輯器  安裝命令:yum install vim -y

 

2、添加GitLab鏡像源並安裝gitlab服務器

1.添加gitlab鏡像

wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm

 

[root@localhost ~]# wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm
--2019-11-04 11:49:39--  https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm
正在解析主機 mirrors.tuna.tsinghua.edu.cn (mirrors.tuna.tsinghua.edu.cn)... 101.6.8.193, 2402:f000:1:408:8100::1
正在鏈接 mirrors.tuna.tsinghua.edu.cn (mirrors.tuna.tsinghua.edu.cn)|101.6.8.193|:443... 已鏈接。
已發出 HTTP 請求,正在等待迴應... 200 OK
長度:359519811 (343M) [application/x-redhat-package-manager]
正在保存至: 「gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm」

100%[============================================================================================================================================>] 359,519,811 1.55MB/s 用時 3m 16s 

2019-11-04 11:52:55 (1.75 MB/s) - 已保存 「gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm」 [359519811/359519811])

 

 

 

 

 

2.安裝gitlab 安裝命令:rpm -i gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm

安裝過程須要些時間,若是出現下圖,則說明安裝成功。

 

 

 

4.修改gitlab配置文件指定服務器ip和自定義端口:vim  /etc/gitlab/gitlab.rb

 進入編輯器後按「i」鍵進入編輯狀態,ESC鍵退出編輯狀態

 退出並保存,命令輸入「:wq」

 ps:注意這裏設置的端口不能被佔用,默認是8080端口,若是8080已經使用,請自定義其它端口,並在防火牆設置開放相對應得端口

注意這裏要寫成IP地址。

   

 

 

 

  

external_url 'http://192.168.122.199:8077'

  

5.重置並啓動GitLab

執行:

gitlab-ctl reconfigure

gitlab-ctl restart

 

6. 關閉防火牆

 

防火牆

apt install firewalld

systemctl stop firewalld.service

systemctl disable firewalld.service

firewall-cmd --state

若是顯示not running,則關閉成功

 

 

7.訪問 GitLab頁面

訪問地址:http://192.168.122.199:8077/

初始帳戶: root 密碼:5iveL!fe

第一次登陸修改密碼(最少8位,此處修改成 root123456)

 

 

 

 

 

 

 

 

設置 SSH Keys

 

 

 生成SSH的方式 參考 https://git-scm.com/book/zh/v1/服務器上的-Git-生成-SSH-公鑰

文件生成目錄:C:\Users\用戶\.ssh\id_rsa.pub
把內容粘貼到頁面配置中便可。

 

 

 

 

建立 New Group

填寫基本信息,點擊」Create group「完成建立組。

 

 

給組添加人員:

一、點擊」Members」

 

 

刪除組:

一、點擊「Settings」

 

 

 

項目管理

建立項目

一、點擊」New project「

 

 

 

 

 

 

 

 

 

 增長開發人員

 

 

 安裝部署完成。。

 

 

配置Jenkins自動構建

進入項目,Settings 選擇 Integrations 

 

 

 

 

 

 

填寫如下內容 

URL:Jenkins 中配置的 構建觸發器 中的地址,參考:http://www.javashuo.com/article/p-yqjlmqho-hd.html

Secret Token:Jenkins 中配置的 構建觸發器 中的地址,參考:http://www.javashuo.com/article/p-yqjlmqho-hd.html

默認選中 Push events 和 Enable SSL verification

點擊 Add Webhook

 

 

 

 

 配置完成。

 

 

 

 

 

 

 

 

 

 

 

 

 

參考:https://blog.csdn.net/duyusean/article/details/80011540 

參考:http://www.javashuo.com/article/p-grcelqnd-hm.html

相關文章
相關標籤/搜索