1) Git 설치
sudo yum install git -y #git 설치
curl https://packages.GitLab.com/install/repositories/GitLab/GitLab-ce/script.rpm.sh | sudo bash #gitlab 패키지
sudo yum install -y gitlab-ce.x86_64 #gitlab 설치
2) 도메인 연결
sudo vi /etc/gitlab/gitlab.rb
"""
external_url "http://gitlab.example.com" #설정한 주소 적기
"""
sudo gitlab-ctl reconfigure #변경사항 반영
sudo gitlab-ctl start #시작
초기 비밀번호 확인
cat /etc/gitlab/initial_root_password | grep Password:
'Cloud Infra Architecture (AWS) > AWS 자동배포' 카테고리의 다른 글
AWS Linux2023에 Jenkins 설치하기 (0) | 2024.07.17 |
---|---|
terraform 기본 인프라 생성하기 (key pair, ec2, security group) (0) | 2024.06.24 |
terraform 기본 인프라 생성하기 (vpc, igw, nat, subnet, routing table) (0) | 2024.06.24 |
VSCode에 AWS CodeWhisperer과 Terraform 연동하기 (0) | 2024.06.23 |