본문 바로가기
728x90

전체 글281

[DevOps] Harbor 구성 후 삭제하기 개요Harbor는 Docker 이미지 저장소 관리 도구로, 삭제하려면 컨테이너, 데이터, 구성 파일 등을 모두 정리해야 한다. 아래는 Harbor를 안전하게 삭제하는 방법이다. 1단계 : Harbor 서비스 중지1.1 Docker Compose로 실행 중인 경우1. Harbor 설치 디렉터리로 이동cd ~/harbor 2. docker-compose 명령어로 컨테이너 중지docker-compose downWARN[0000] /root/harbor/docker-compose.yml: `version` is obsolete[+] Running 10/10 ✔ Container harbor-jobservice Removed .. 2024. 12. 12.
[DevOps] Ubuntu24.04에 Jenkins 설치하기 1. Java 설치Ubuntu에서 java-17-openjdk 설치sudo apt updatesudo apt install -y openjdk-17-jdk2.  Jenkins Repository 추가# curl -fsSL https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key | sudo tee \/usr/share/keyrings/jenkins-keyring.asc > /dev/null# echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \https://pkg.jenkins.io/debian-stable binary/ | sudo tee \/etc/apt/sources.list.d/jenkins.l.. 2024. 12. 10.
[DevOps] 다양한 사용자가 GitLab 환경을 사용할 때 설정가이드 0. GITLAB INSTALLhttps://estar987.tistory.com/entry/GitLAB-%EC%84%A4%EC%B9%98 GitLAB 설치1. GitLab 패키지 저장소 추가1.1 필수 패키지 설치sudo apt updatesudo apt install -y curl ca-certificates gnupg 1.2 GitLab GPG 키 추가curl -fsSL https://packages.gitlab.com/gitlab/gitlab-ce/gpgkey | sudo gpg --dearmor -o /usr/share/keyringwww.estar987.com 1. GIT 초기 설정GitLab을 사용하기 위해선 먼저 Git 환경을 설정해야 합니다.1-1. 사용자 정보 설정Git을 사용하기 위해.. 2024. 12. 10.
[Terraform] Windows에 Terraform 설치하기 개요테라폼을 Windows 환경에서 설치한다. 다운로드https://developer.hashicorp.com/terraform/install Install | Terraform | HashiCorp DeveloperExplore Terraform product documentation, tutorials, and examples.developer.hashicorp.com  설치압축 해제 후 나온 terraform.exe 파일을 C:\ 디렉터리에 옮긴다. Windows 환경 변수 등록하기내 컴퓨터 속성(단축키 : win + Pause)고급 시스템 설정 환경 변수 Path 편집환경 변수 등록Terraform CLI 테스트(CMD , Powershell 모두 실행) 2024. 12. 6.
[DevOps]GitLAB 설치 1. GitLab 패키지 저장소 추가1.1 필수 패키지 설치sudo apt updatesudo apt install -y curl ca-certificates gnupg 1.2 GitLab GPG 키 추가curl -fsSL https://packages.gitlab.com/gitlab/gitlab-ce/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/gitlab-archive-keyring.gpg 1.3 GitLab 레포지토리 추가 저장소를 /etc/apt/sources.list.d/에 추가echo "deb [signed-by=/usr/share/keyrings/gitlab-archive-keyring.gpg] https://packages.gitlab.com/.. 2024. 12. 6.
[Terraform] 테라폼(Terraform) 설치 설치다른 OS에서 설치할 경우 아래 링크에 들어가서 설치하면 된다. https://developer.hashicorp.com/terraform/install Install | Terraform | HashiCorp DeveloperExplore Terraform product documentation, tutorials, and examples.developer.hashicorp.com  wget -O - https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpgecho "deb [arch=$(dpkg --print-architecture) signed-by=/u.. 2024. 12. 6.
728x90