CentOS 七 搭建 gitlab 伺服器

2021-10-09 11:45:45 字數 1055 閱讀 6889

centos 7搭建gitlab伺服器超詳細

sudo yum install -y curl policycoreutils-pythonopenssh-server
將 ssh 服務設定成開機自啟動。

sudo systemctl enable sshd  

sudo systemctl start sshd

安裝並開啟防火牆。

sudo yum install firewalld systemd -y

sudo

service firewalld start

安裝 postfix 以傳送通知郵件。

sudo yum install postfix

sudo systemctl enable postfix

sudo systemctl start postfix

wget
這個映象為 734.5 mib。

安裝 gitlab 安裝命令。

sudo rpm -i gitlab-ce-13.3.6-ce.0.el7.x86_64.rpm
修改 gitlab 配置檔案指定伺服器 ip 和自定義埠。

sudo vim /etc/gitlab/gitlab.rb
這裡設定的埠不能被占用,預設是8080埠,如果8080已經使用,請自定義其它埠,並在防火牆設定開放相對應的埠。

external_url 'http://localhost'
重置並啟動 gitlab。

sudo gitlab-ctl reconfigure

sudo gitlab-ctl restart

提示"ok: run:"表示啟動成功。

如果沒有網域名稱,直接輸入伺服器 ip 和指定埠進行訪問。

第一次登入時記得修改密碼。

centos 環境gitlab搭建

1 gitlab環境搭建 漢化 git將本地已有的專案匯入到gitlab遠端伺服器 解決centos安裝gitlab經常奔潰,prometheus執行失敗 解決方式 1 更新pip2 版本 pip2 install upgrade pip 2 安裝leveldb pip install leveld...

Centos7 搭建 Gitlab 服務

1 安裝基礎包 yum y install curl policycoreutils openssh server openssh clients2 啟動 sshd systemctl enable sshd systemctl start sshd3 新增防火牆規則 yum install git...

基於CentOS 7 搭建 GitLab

系統要求 centos 7.2 64 位作業系統 yum update y 安裝 sshd yum install y curl policycoreutils python openssh server 啟用並啟動 sshd systemctl enable sshd systemctl star...