원인
X$CLUSTER_LOCATION 에서 해당 멤버의 정보가 이미 있는 경우 발생합니다.
gSQL> select * from x$cluster_location@local; MEMBER_NAME HOST PORT ----------- ------------ ----- G1N1 192.168.0.50 10000 G2N1 192.168.0.50 20000 2 rows selected.
gSQL> create cluster location g1n1 host '192.168.0.50' port 30000; ERR-HY000(56000): location information of member 'G1N1' already exists :
해결방안
[방안 1] X$CLUSTER_LOCATION 에서 조회되는 멤버명과 다른 멤버로 구문을 수행합니다.
gSQL> create cluster location g1n2 host '192.168.0.50' port 30000;
[방안 2] X$CLUSTER_LOCATION 에서 조회되는 멤버를 제거한 후, 구문을 수행합니다.
gSQL> drop cluster location g1n1; gSQL> create cluster location g1n1 host '192.168.0.50' port 30000;
'Database > Goldilocks' 카테고리의 다른 글
[GOLDILOCKS] ERR-HY000(56003): has inactive member ( G1N2 ) (0) | 2018.10.31 |
---|---|
[GOLDILOCKS] ERR-HY000(56001): location information of member 'G1N3' does not exist (0) | 2018.10.31 |
[GOLDILOCKS] ERR-HY014(18008) : Limit on the number of SQL statement exceeded (0) | 2018.10.10 |
[GOLDILOCKS] DBeaver 연동하기 (0) | 2018.10.01 |
[GOLDILOCKS] PL/SQL Exception 예외처리하기 (0) | 2018.08.21 |