Load To Technical Architect

[Linux] GitLab Community Edition 설치 본문

Tool/형상관리

[Linux] GitLab Community Edition 설치

고지식한청춘 2022. 2. 8. 14:38
728x90

- GitLab은 Git 저장소로 CI/CD, 이슈 추적, 보안성 테스트 등의 기능을 갖춘 웹 기반의 데브옵스 플랫폼으로써 오픈소스입니다.

- OS : CentOS 7

 

 

 

1. GitLab 설치에 필요한 패키지 다운로드

# yum install -y curl policycoreutils-python openssh-server perl

 

 

 

2. GitLab 패키지 레파지토리 추가

# curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash

 

 

 

3. GitLab 패키지 설치

# EXTERNAL_URL="http://[Server IP]" yum install -y gitlab-ce
// 예시 EXTERNAL_URL="http://192.168.1.10" yum install -y gitlab-ce

 

 

 

4. GitLab Status 확인

# gitlab-ctl status

 

 

5. GitLab 접속 및 로그인

브라우저에 서버 IP를 입력하면 GitLab 로그인 화면으로 접속 됨

Username : root

Password는 /etc/gitlab/initial_root_password 파일을 확인해보면 root의 초기 비밀번호를 확인 할 수 있음

728x90

'Tool > 형상관리' 카테고리의 다른 글

[Linux] SVN Server 설치 및 구성  (0) 2022.09.22
Comments