-
OpenSearch 외부 접속 및 설치 오류 : discovery.seed_hosts, discovery.seed_providers, cluster.initial_cluster_manager_nodes / cluster.initial_master_nodes오답 노트 2023. 12. 7. 15:59
OpenSearch를 우여곡절 끝에 설치하고 실행시켜보려고 했습니다.
우선 외부에서 접속을 해야 하기 때문에 우선 Opensearch.yml 내부에 network 탭에 아래의 내용을 추가해줍니다.
// opensearch.yml ...(생략)... # ---------------------------------- Network ----------------------------------- # # Set the bind address to a specific IP (IPv4 or IPv6): # #network.host: 192.168.0.1 network.host: 0.0.0.0 # # Set a custom port for HTTP: # #http.port: 9200 http.port: 9200 transport.port: 9300 # # For more information, consult the network module documentation. ...(생략)
network.host는 0.0.0.0으로, http.port와 transport.port는 각각 9200과 9300으로 설정해줍니다.
그리고 다시 접속시도!
그런데 또! 아래와 같은 오류가 또! 나더군요..
해결 방법은 위에 언급한 옵션들을 설정해주면 되는 거였습니다.
discovery.seed_hosts, discovery.seed_providers, cluster.initial_cluster_manager_nodes / cluster.initial_master_nodes
우선 opensearch가 설치된 폴더의 config 폴더 내 opensearch.yml을 열어줍니다.
그럼 내부에 discovery 영역이 있는데 여기에 seed_hosts와 master_nodes를 추가해줍니다.
// opensearch.yml 내부 ...(생략)... # --------------------------------- Discovery ---------------------------------- # # Pass an initial list of hosts to perform discovery when this node is started: # The default list of hosts is ["127.0.0.1", "[::1]"] # discovery.seed_hosts: ["127.0.0.1", "[::1]"] # # Bootstrap the cluster using an initial set of cluster-manager-eligible nodes: # cluster.initial_master_nodes: ["서버IP입력"] #cluster.initial_cluster_manager_nodes: ["node-1", "node-2"] # # For more information, consult the discovery and cluster formation module documentation. # ...(생략)...
저는 우선 master노드가 하나이기에 그냥 cluster에 master노드만 입력해주었습니다.
그리고 구동시켰더니 정상적으로 구동 완료되었습니다 😆
'오답 노트' 카테고리의 다른 글
[Gradle 빌드 안될 때] Module entity with name: XXX should be available 오류 발생 시 (0) 2024.01.31 [Docker] Docker 실행 시 something went wrong. wsl.exe -l -v --all 오류 해결! (0) 2023.12.29 [OpenSearch] Accessdenied Exception: opensearch.keystore 오류 해결하기! (0) 2023.12.07 APPLICATION FAILED TO START (0) 2023.11.07 정수(Primitive type) 배열을 리스트로 변환하기 (0) 2023.10.13