반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 통영예쁜카페
- springboot
- 성신여대맛집
- 공무원
- 뚝섬역맛집
- 자바스크립트에러처리
- 국가직
- 돈암동맛집
- ELK
- 꼴뚜기회
- 성북구맛집
- react
- 통영에어비앤비
- npm
- 퇴사후공무원
- 통영여행
- gradle
- 서울숲누룽지통닭구이
- 스페인여행
- 한성대맛집
- 한남동맛집
- 통영
- 파이썬
- 성신여대편백집
- 영화추천
- ubuntu자바설치
- 방이편백육분삼십성신여대
- 방이편백육분삼십
- JavaScript
- tomcat7
Archives
- Today
- Total
코린이의 기록
[Elasticsearch] network.host 설정 bootstrap checks failed 본문
반응형
elasticsearch.yml에서 network.host를 127.0.0.1로 지정한 후 curl -XGET localhost:9200 을 날리면 잘 되는데
127.0.0.1 -> 10.20.x.x 로 바꿔서 curl -XGET 10.20.x.x:9200 을 날리면 /var/log/my-application.log에서 아래와같이 error 가 발생한다.
[1] bootstrap checks failed [1]: the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured |
그래서 아래와 같이 설정을 바꿔줌
Before
network.host: 127.0.0.1 |
After
network.host: ["localhost", "10.20.x.x"] cluster.initial_master_nodes: ["10.20.x.x"] |
https://linuxacademy.com/community/posts/show/topic/36639-elasticsearch-yml-changes-70
반응형
'ELK' 카테고리의 다른 글
[ELK] Integrate Filebeat + Kafka + Logstash + Elasticsearch + Kibana (1) | 2019.05.16 |
---|---|
[Elasitcsearch] v7.0.1 Indexing / Mapping / Searching (0) | 2019.05.08 |
[Logstash] Logstash 7.x 설치 및 다운로드 (0) | 2019.05.07 |
[Kibana] Kibana XXX with some different versions of Elasticsearch. (0) | 2019.05.07 |
[Elasticsearch] Mac OS Elasticsearch Install (0) | 2019.05.04 |
Comments