반응형
Elasticdump를 진행 중에 마주친 에러
Error I got while doing Elasticdump
Elasticsearch missing authentication credentials for REST request
Authentication이 필요하다.
This errer is given when it is not properly authenticated.
username과 비밀번호를 입력해주거나
add your username and password like below or
--input=http://name:password@{host}:{port}/{index}
apikey를 헤더 옵션으로 넣어주면 된다.
add your apikey by using the option, headers (it would be --input-headers / --output-headers).
elasticdump --input={protocol}://{host}:{port}/{index} --output={protocol}://{host}:{port}/{index}
--output-headers='{"Authorization": "ApiKey {your apikey} "}'
--type=data
ApiKey 스트링과 나의 apikey 사이에는 " " 스페이스가 있다.
remember, there is a " ", space between ApiKey and your apikey.
Elasticdump 방법 How to do Elasticdump :
https://blckchainetc.tistory.com/manage/posts/
반응형