본문 바로가기
Infra

Centos 7.x for gitlab install (깃랩 설치하기)

by west_east_circle 2022. 3. 29.
반응형

centos 7.x  버전에서 gitlab ce 버전 설치 방법

yum -y install curl policycoreutils openssh-server openssh-clients postfix
systemctl start sshd && postfix
systemctl start sshd && systemctl start postfix
systemctl enable sshd && systemctl enable postfix
#curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh
#귀찮아 하지말고 | sudo bash 입력 해야 한다
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
yum -y install gitlab-ce
systemctl status firewalld
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload

방화벽 설정에서 위와 같이 http 관련 설정 필요

cd /etc/gitlab/
vi gitlab.rb
#external uri,ip , port 설정필요시 32번 행
gitlab-ctl reconfigure

gitlab-ctl reconfigure 실행하면 위와 같은 이미지가 약 2분 이상 나오면 끝난다.

끝나면 해당 IP 설정한곳으로 http 또는 https:// 접속 시도

접속시 위와 같은 이미지 출력 /password 설정이 안되어 있다면 다음 행 참고

기본적으로 패스워드 설정을 하던지 안하던지 자유 이다. (저는 안했음)

초기 패스워드는 vi /etc/gitlab/initial_root_password 경로에 아래와 같이 표시 된다.

긁어서 웹페이지에 넣어주면 된다.

반응형

'Infra' 카테고리의 다른 글

Help Desk Ticket system -zammad user delete  (0) 2022.04.26
RDP remote 원격 솔루션 (Guacamole) - install  (0) 2022.04.25
Netapp FAS 8200 Header?  (0) 2022.01.27
netapp cluster time setting  (0) 2022.01.03
fortigate 방화벽 ping 옵션  (0) 2021.12.08