Centos7 搭建 Gitlab 服務

2021-08-16 01:32:08 字數 1462 閱讀 5638

1 安裝基礎包

yum -y install curl policycoreutils openssh-server openssh-clients
2 啟動 sshd

systemctl enable sshd

systemctl start sshd

3 新增防火牆規則

yum install gitlab-ce6 配置並啟動 gitlab

gitlab-ctl reconfigure
7 修改 gitlab.rb 和 gitlab 埠配置

vi /etc/gitlab/gitlab.rb

nginx['listen_port'] = 82

#預設值即80埠 nginx['listen_port'] = nil

listen *:82; #預設值listen *:80;

server_name gitlab.oone.top;

8 修改後重新啟動下 gitlab

gitlab-ctl restart
9 此時可以用 82 埠來訪問 gitlab 了,如果需要使用 80 埠來訪問,可以在本機 nginx 配置乙個反向**:

upstream gitlab

server

}

10 可以訪問 gitlab 網頁了: 以下為預設密碼,登入後可以修改密碼

預設賬戶密碼是

username: root

password:

5ivel!fe

基於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...

基於CentOS7搭建GitLab

2 安裝gitlab 3 初始化gitlab 4 gitlab安裝已完成 在正式開始安裝之前,先更新軟體包並開啟相關服務的許可權 yum update yyum install y curl policycoreutils python openssh serversystemctl enable ...

Gitlab服務搭建記錄(CentOS7)

六 問題記錄 3 403 forbidden yum y install curl policycoreutils python openssh server openssh clients postfix cronie wget systemctl start postfix systemctl ...