1.18. 문제 해결을 위해 프로비저닝된 PostgreSQL 데이터베이스에 액세스
프로비저닝된 PostgreSQL 데이터베이스에 액세스하여 multicluster 글로벌 허브의 문제를 해결하는 데 도움이 될 수 있는 메시지를 볼 수 있습니다. 서비스 유형에 따라 프로비저닝된 PostgreSQL 데이터베이스에 액세스하는 세 가지 방법이 있습니다.
ClusterIP
서비스 사용다음 명령을 실행하여 postgres 연결 URI를 확인합니다.
oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "uri" | base64decode}}'
다음 명령을 실행하여 데이터베이스에 액세스합니다.
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
서비스 사용다음 명령을 실행하여 서비스를 NodePort로 수정하고, 호스트를 노드 IP로 설정하고, 포트를 32432로 설정합니다.
oc patch postgrescluster hoh -n multicluster-global-hub-postgres -p '{"spec":{"service":{"type":"NodePort", "nodePort": 32432}}}' --type merge
다음 명령을 실행하여 사용자 이름을 추가합니다.
oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "user" | base64decode}}'
다음 명령을 실행하여 암호를 추가합니다.
oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "password" | base64decode}}'
다음 명령을 실행하여 데이터베이스 이름을 추가합니다.
oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "dbname" | base64decode}}'
LoadBalancer
다음 명령을 실행하여 서비스 유형을
LoadBalancer
로 설정합니다.oc patch postgrescluster hoh -n multicluster-global-hub-postgres -p '{"spec":{"service":{"type":"LoadBalancer"}}}' --type merge
기본 포트는 5432입니다.
다음 명령을 실행하여 호스트 이름을 설정합니다.
kubectl get svc -n multicluster-global-hub-postgres hoh-ha -ojsonpath='{.status.loadBalancer.ingress[0].hostname}'
다음 명령을 실행하여 사용자 이름을 추가합니다.
oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "user" | base64decode}}'
다음 명령을 실행하여 암호를 추가합니다.
oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "password" | base64decode}}'
다음 명령을 실행하여 데이터베이스 이름을 추가합니다.
oc get secrets -n multicluster-global-hub-postgres hoh-pguser-postgres -o go-template='{{index (.data) "dbname" | base64decode}}'