rhel9.2 repo + postgresql16 install
# RHEL 9.2용 표준 레포지토리 직접 생성 (Rocky 9 미러 활용)sudo tee /etc/yum.repos.d/rhel9.repo # 캐시 초기화 및 레포지토리 인식 확인sudo dnf clean allsudo dnf makecache# 1. PostgreSQL 공식 저장소(Repository) 추가sudo dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-9-x86_64/pgdg-redhat-repo-latest.noarch.rpm# 1. 내장 모듈 비활성화 (기존 버전과의 충돌 방지)sudo dnf -qy module disable postgresql# 2. 요청하신 4가지 패키지 특정 버전 설치# postgr..