GitLab是一個基於Git的版本管理系統,可以提供程式碼倉庫、程式碼審核、問題追蹤等功能。
以下是CentOS7系統上安裝GitLab的步驟:
sudo yum install curl policycoreutils openssh-server openssh-clients sudo systemctl enable sshd sudo systemctl start sshd sudo firewall-cmd --permanent --add-service=http sudo systemctl reload firewalld
sudo yum install postgresql-server postgresql-contrib sudo postgresql-setup initdb sudo systemctl enable postgresql sudo systemctl start postgresql
開啟 /var/lib/pgsql/data/pg_hba.conf
文件,找到下列行:
# "local" is for Unix domain socket connections onlylocal all all peer# IPv4 local connections:host all all 127.0.0.1/32 ident# IPv6 local connections:host all all ::1/128 ident
將 peer
改為 md5
,儲存檔案並退出。
curl | sudo bash sudo EXTERNAL_URL="
其中,EXTERNAL_URL
指定GitLab的位址。
sudo gitlab-ctl reconfigure sudo gitlab-ctl start
存取 ,根據提示設定管理員密碼。
至此,GitLab安裝完成。可以登入GitLab控制台,建立程式碼倉庫、新增開發者等。
以上是CentOS7系統GitLab安裝部署教學。的詳細內容。更多資訊請關注PHP中文網其他相關文章!