Ubuntu에서 단일 노드 EDB Postgres Distributed 클러스터 설정하기
작성자: Phil Eaton2025년 8월 14일 Ubuntu에서 EDB Postgres Distributed 클러스터 단일 노드 설정하는 방법 EDB 계정에 로그인하거나 무료로 등록한 뒤 구독 토큰(subscription token)을 발급받으세요. 그런 다음 환경 변수에 내보냅니다. $ export EDB_SUBSCRIPTION_TOKEN=whatever-it-is 이제 **EDB Postgres Distributed(PGD)**와 **EDB Postgres Extended(EDB의 Postgres 배포판)**용 리포지토리를 설정합니다. $ curl -1sLf “https://downloads.enterprisedb.com/$EDB_SUBSCRIPTION_TOKEN/postgres_distributed/setup.deb.sh” | sudo -E bash$ curl -1sLf “https://downloads.enterprisedb.com/$EDB_SUBSCRIPTION_TOKEN/enterprise/setup.deb.sh” | sudo -E bash apt-get을 업데이트하고 PGD 및 EDB Postgres Extended 패키지를 설치합니다. $ sudo apt-get update -y$ sudo apt-get install -y edb-pgd6-expanded-pgextended17 이제 postgres 사용자로 전환하여 인스턴스를 설정합니다. $ sudo su postgres$ cd ~ PGD CLI를 사용해 새로운 Postgres 인스턴스를 생성하고 단일 노드 PGD 클러스터를 설정합니다. $ PGPASSWORD=secret /usr/lib/edb-pge/17/bin/pgd node db1 setup \ –dsn ‘host=localhost […]