검색

1.18. 문제 해결을 위해 프로비저닝된 PostgreSQL 데이터베이스에 액세스

download PDF

프로비저닝된 PostgreSQL 데이터베이스에 액세스하여 multicluster 글로벌 허브의 문제를 해결하는 데 도움이 될 수 있는 메시지를 볼 수 있습니다. 서비스 유형에 따라 프로비저닝된 PostgreSQL 데이터베이스에 액세스하는 세 가지 방법이 있습니다.

  • ClusterIP 서비스 사용

    1. 다음 명령을 실행하여 postgres 연결 URI를 확인합니다.

      oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "uri" | base64decode}}'
    2. 다음 명령을 실행하여 데이터베이스에 액세스합니다.

      oc exec -it $(kubectl get pods -n multicluster-global-hub-postgres -l postgres-operator.crunchydata.com/role=master -o jsonpath='{.items..metadata.name}') -c database -n multicluster-global-hub-postgres -- psql -U postgres -d hoh -c "SELECT 1"
  • NodePort 서비스 사용

    1. 다음 명령을 실행하여 서비스를 NodePort로 수정하고, 호스트를 노드 IP로 설정하고, 포트를 32432로 설정합니다.

      oc patch postgrescluster hoh -n multicluster-global-hub-postgres -p '{"spec":{"service":{"type":"NodePort", "nodePort": 32432}}}'  --type merge
    2. 다음 명령을 실행하여 사용자 이름을 추가합니다.

      oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "user" | base64decode}}'
    3. 다음 명령을 실행하여 암호를 추가합니다.

      oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "password" | base64decode}}'
    4. 다음 명령을 실행하여 데이터베이스 이름을 추가합니다.

      oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "dbname" | base64decode}}'
  • LoadBalancer

    1. 다음 명령을 실행하여 서비스 유형을 LoadBalancer 로 설정합니다.

      oc patch postgrescluster hoh -n multicluster-global-hub-postgres -p '{"spec":{"service":{"type":"LoadBalancer"}}}'  --type merge

      기본 포트는 5432입니다.

    2. 다음 명령을 실행하여 호스트 이름을 설정합니다.

      kubectl get svc -n multicluster-global-hub-postgres hoh-ha -ojsonpath='{.status.loadBalancer.ingress[0].hostname}'
    3. 다음 명령을 실행하여 사용자 이름을 추가합니다.

      oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "user" | base64decode}}'
    4. 다음 명령을 실행하여 암호를 추가합니다.

      oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "password" | base64decode}}'
    5. 다음 명령을 실행하여 데이터베이스 이름을 추가합니다.

      oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "dbname" | base64decode}}'
Red Hat logoGithubRedditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

© 2024 Red Hat, Inc.