본문 바로가기

전체 글

(52)
Gitlab 구축 ( Version 18.5.3 ) Docker 환경에서 Rocky Linux 8.10기반 컨테이너를 구성 한 후 Gitlab을 구축 환경 구성root 또는 sudo 권한 필요최소 사양CPU: 2코어 이상(권장 4코어), RAM: 4GB 이상 (권장 8GB), 디스크: 10GB 이상방화벽 포트 오픈 ( 80, 443, 22 )시스템 업데이트 및 필수 패키지 설치sudo dnf -y update && sudo dnf -y upgradesudo dnf install -y curl policycoreutils-python-utils openssh-server perl postfixsudo systemctl enable --now sshdsudo systemctl enable --now postfix** sshd -> ssh 접속을 가능하게 하는..
GitLab Runner 설치 및 등록 ( version 18.5.0 ) GitLab Runner는 GitLab CI/CD 파이프라인을 실행하는 에이전트(작업 실행기)즉, GitLab에서 정의한 빌드·테스트·배포 작업을 실제로 수행하는 프로그램이다. GitLab Runner 파일 다운로드 및 설치curl -LO https://packages.gitlab.com/runner/gitlab-runner/packages/el/8/gitlab-runner-18.5.0-1.x86_64.rpm/download.rpmmv download.rpm gitlab-runner-18.5.0-1.x86_64.rpmsudo dnf install gitlab-runner-18.5.0-1.x86_64.rpm** runner 설치 시 아래와 같이 gitlab-runner-helper-images가 없다는 문..
Apache Hive 설치 2 ( HIVE 설치 및 설정 ) 1. Postgresql db에 메타 스토어로 사용할 디비 생성 - hive 설치 전 먼저 Postgresql db에 메타 스토어로 사용할 디비를 생성해야 합니다. Postgres 계정으로 접속 후 메타스토어를 생성해 주세요. su - Postgres create database metastore owner postgres; create schema authorization postgres; \list 명령어를 통해 데이터베이스 목록에 metastore가 생성되었는지 확인합니다. 2. HIVE 설치 및 적용 - HIVE 3.1.2 버전을 설치합니다. root 계정으로 진행합니다. wget https://downloads.apache.org/hive/hive-3.1.2/apache-hive-3.1.2-bi..