본문 바로가기

개발개발

Centos 에서 GitLab 설치하기

소스로 컴파일 설치를 시도해보았는데, 몇일간 삽질끝에 포기했다. 그냥 yum 으로 설치하자.
정신건강에 해롭다.

CentOS : 6.9
GitLab : 11.1.4

1. 의존 라이브러리 설치

#> yum install -y curl policycoreutils-python openssh-server openssh-clients cronie #> lokkit -s http -s ssh
#> yum install postfix

#> service postfix start

#> chkconfig postfix on

2. Gitlab 설치

#>curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | bash
#>
EXTERNAL_URL="http://gitlab.example.com" yum install -y gitlab-ce

끝. 개간단 !