centos7.9 搭建GitLab服务器
生活随笔
收集整理的這篇文章主要介紹了
centos7.9 搭建GitLab服务器
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1.安裝依賴包
yum install -y curl policycoreutils-python openssh-server2.設置 SSH 開機自啟動并啟動 SSH 服務
systemctl enable sshd systemctl start sshd3.安裝 Postfix
3.1.安裝
yum install -y postfix如出現下面提示,則代表該服務已經安裝了。
3.2.執行以下命令,設置 Postfix 服務開機自啟動
systemctl enable postfix查看postfix服務狀態
systemctl status postfix?3.3.打開 Postfix 的配置文件 main.cf
vi /etc/postfix/main.cf按?i?進入編輯模式,刪除?inet_interfaces = all?前的?#,在?inet_interfaces = localhost?前加上?#。
?3.4.重啟postfix
systemctl start postfix systemctl restart postfix4.執行以下命令,添加 GitLab 軟件包倉庫
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash?5.安裝 GitLab
sudo EXTERNAL_URL="實例公網 IP 地址" yum install -y gitlab-ce?安裝的版本:gitlab-ce-14.8.4-ce.0.el7.x86_64.rpm
安裝成功,注意整個安裝后,gitLab占了大概有接近3G內存。?
6.設置管理員賬號密碼
6.1.獲取管理員帳戶默認密碼
cat /etc/gitlab/initial_root_password進去以后,可以重置密碼。
注意:最新版訪問地址,直接就是80端口就可以訪問了。
7.更改默認的倉庫存儲目錄
默然安裝時,默認的倉庫存儲路徑在 /var/opt/gitlab/git-data目錄下,倉庫存儲在子目錄repositories里面,可以通過修改/etc/gitlab/gitlab.rb文件中git_data_dirs參數來自定義父目錄。
vi /etc/gitlab/gitlab.rb?把該注釋打開,使用自己的數據盤路徑即可。
?沒有數據下,我們可以這樣操作
先關閉應用,然后再重載一下配置,最后啟動。
啟動:gitlib-ctl start 關閉:gitlab-ctl stop 重啟:gitlab-ctl restart 重載配置:gitlab-ctl reconfigure 查看狀態:gitlab-ctl status 與50位技術專家面對面20年技術見證,附贈技術全景圖總結
以上是生活随笔為你收集整理的centos7.9 搭建GitLab服务器的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 如何写年终总结
- 下一篇: xshell 7 官网免费下载