본문 바로가기
Linux/Gitlab

gitlab 설치

by 준섭이 2023. 12. 28.
728x90

#### Linux GitLab 설치

### 의존성 패키지 설치
yum install epel-release
yum install -y curl policycoreutils-python openssh-server perl

### 방화벽 포트 오픈
80, 443

### GitLab CE 저장소 추가
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash

### GitLab CE 설치
yum install -y gitlab-ce

### GitLab 설정
vi /etc/gitlab/gitlab.rb
external_url 'http://serverip'

### configure
gitlab-ctl reconfigure

### GitLab Root 비밀번호 확인
cat /etc/gitlab/initial_root_password

 

### GitLab 서비스 시작

gitlab-ctl start

'Linux > Gitlab' 카테고리의 다른 글

git to git migration - 2023  (0) 2023.12.28
gitlab sendmail 발송  (0) 2023.12.28
gitlab default branch name 변경  (0) 2023.12.28
gitlab default branch 변경  (0) 2023.12.28
gitlab port 변경  (0) 2023.12.28