Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 편스토랑
- AI 경진대회
- ubuntu
- 코로나19
- SW Expert Academy
- 프로그래머스
- 더현대서울 맛집
- 백준
- 캐치카페
- Baekjoon
- 데이콘
- PYTHON
- hackerrank
- gs25
- 금융문자분석경진대회
- 프로그래머스 파이썬
- Git
- Docker
- github
- 파이썬
- leetcode
- Real or Not? NLP with Disaster Tweets
- ChatGPT
- 편스토랑 우승상품
- Kaggle
- 맥북
- 우분투
- programmers
- dacon
- 자연어처리
Archives
- Today
- Total
솜씨좋은장씨
[Elasticsearch] Not whitelisted in reindex.remote.whitelist 해결 방법 본문
Programming/Elasticsearch
[Elasticsearch] Not whitelisted in reindex.remote.whitelist 해결 방법
솜씨좋은장씨 2020. 12. 21. 11:30728x90
반응형
Elasticsearch에서 종종 reindexing 을 할 경우가 있습니다.
최근 프로젝트를 진행하면서 기존에 ES 서버에 인덱싱되어있는 인덱스를
새롭게 만든 서버에서 인덱싱을 할 일이 있었습니다.
kibana에서 reindex 명령어를 입력하여 시도를 하였는데
Not whitelisted in reindex.remote.whitelist
위와 같은 오류를 만나게 되었습니다.
이를 해결하는 방법은 다음과 같습니다.
먼저 elasticsearch가 설치된 곳으로 이동합니다.
거기서 elasticsearch.yml 파일을 찾아 한 줄을 추가해주면 됩니다.
reindex.remote.whitelist: "0.0.0.0:9200"
reindex.remote.whitelist: "원하는IP:PORT"
그리고 나서 elasticsearch를 껐다가 다시 실행해준 후 다시 reindexing을 시도하면
정상적으로 인덱싱이 되는 것을 확인할 수 있습니다.
읽어주셔서 감사합니다.
'Programming > Elasticsearch' 카테고리의 다른 글
[Elasticsearch] 각종 터미널 명령 모음! (0) | 2021.02.02 |
---|---|
[Elasticsearch] Elasticsearch ValueError: Circular reference detected 해결방법 (0) | 2021.01.26 |
Elasticsearch 보안 관련 주의 사항! (0) | 2021.01.15 |
[Elasticsearch] ConnectionTimeout caused by - ReadTimeoutError (feat. bulk API + python) (2) | 2020.05.08 |
[Elasticsearch] "failed to find global tokenizer under [nori_tokenizer]" (0) | 2020.04.29 |
Comments