전체 글
-
[Linux] MySQL8 설치하기Database 2025. 3. 22. 21:03
설치 파일 다운로드https://www.mysql.com/products/community/ MySQL :: MySQL Community EditionMySQL Community Edition MySQL Community Edition is the freely downloadable version of the world's most popular open source database. It is available under the GPL license and is supported by a huge and active community of open source developers. The MySQLwww.mysql.com우클릭 → 링크 복사 MySQL 설치MySQL Repository 설치yum ..
-
PostgreSQL 설치하기 (Yum)Database 2025. 3. 22. 20:54
저장소 설치sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm 저장소 확인yum repolist 기본 PostgreSQL 모듈 비활성화sudo yum -qy module disable postgresql PostgreSQL 설치sudo yum install -y postgresql13-server PostgreSLQ 초기화sudo /usr/pgsql-13/bin/postgresql-13-setup initdb 서비스 등록 및 확인# 등록sudo systemctl enable postgresql-13# 시작sudo systemctl ..
-
Harbor 설치 (Helm)Kubernetes 2025. 3. 21. 18:34
https://artifacthub.io/packages/helm/harbor/harbor harbor 1.16.2 · harbor/harborAn open source trusted cloud native registry that stores, signs, and scans contentartifacthub.io 저장소 추가helm repo add bitnami https://charts.bitnami.com/bitnamihelm repo update Helm Chart 다운로드helm pull bitnami/harbor Helm Chart 압축 해제 및 이동tar xvf harbor-22.0.12.tgzcd harbor values 구성 (Ingress 사용 예)vi values.yamladmi..
-
Chrony 설치 및 NTP 동기화 설정Linux 2025. 3. 21. 18:27
Chrony는 시간 동기화(NTP, Network Time Protocol) 를 위한 서비스로, 서버의 시간을 정확하게 유지하는 데 사용됩니다. Chrony 설치sudo yum install chrony 서비스 시작sudo systemctl start chronyd 자동 시작 설정sudo systemctl enable chronyd 상태 확인sudo systemctl status chronyd NTP 서버 확인 및 동기화 상태 조회chronyc tracking
-
[Nginx] Proxy Server 테스트Linux 2025. 3. 21. 18:22
클라이언트(사용자)가 특정 서버(ex. localhost:80)로 요청을 보내면 Nginx가 이 요청을 받아 다른서버(ex. naver.com)로 대신 전달하도록 Reverse Proxy 테스트 Nginx 설치 (yum)필수 구성 요소 설치yum install yum-utils Repo 설정# vi /etc/yum.repos.d/nginx.repo[nginx-stable]name=nginx stable repobaseurl=http://nginx.org/packages/centos/$releasever/$basearch/gpgcheck=1enabled=1gpgkey=https://nginx.org/keys/nginx_signing.keymodule_hotfixes=true[nginx-mainline]..
-
Windows10 공유폴더 설정 (Home 에디션)Windows 2025. 3. 21. 15:34
Windows 10 Home 에디션에서는 NFS 기능 사용이 불가하여 공유 폴더를 이용했다. 1. 고급 공유 설정고급 공유 설정 관리로 이동 개인 (현재 프로필) 모든 네트워크 2. 공유 폴더 생성 및 권한 설정공유 대상 폴더 속성 → 공유고급 공유 → 선택한 폴더 공유 체크 → 권한 → Everyone의 모든 권한 허용 체크 공유 대상 폴더 속성 → 보안편집 → 그룹 또는 사용자 추가 → Everyone → 모든 권한 체크 3-1. 다른 PC에서 연결내 PC 우클릭 → 네트워크 위치 추가 클릭 대상 폴더 경로 입력 3-2. 다른 PC에서 연결 3-1 방법으로는 jira 설치 시 shared 폴더에 대한 권한 없음이 계속 떠서 다른 방법 시도 내 PC 우클릭 → 네트워크 위치 추..
-
[ERROR][Ubuntu] Hash Sum mismatchLinux 2025. 3. 21. 15:08
에러 내용apt update 명령 실행 시 Hash Sum mismatch 오류 발생! 해결한 방법APT 캐시 삭제 및 압축 방식 설정 변경 후 업데이트sudo rm -rf /var/lib/apt/lists/*sudo apt-get update -o Acquire::CompressionTypes::Order::=gzsudo apt update && sudo apt upgrade ReferenceHash sum mismatch when apt-get update Ubuntu 20.04 VM with Multipass[LINUX] apt update 오류 [해시 합이 맞지 않습니다.]