728x90
Elasticsearch curl 인증 및 명령어 user 사용
Elasticsearch에서 curl 명령어를 사용할 때 최신 8 버전 이상은 인증이 안 되는 경우가 있습니다.
이럴 경우 ID와 PW를 입력합니다.
> curl -u [ID:PW] -XGET "http://localhost:9200/_cat/indices?v"
하지만 명령어를 사용하면 curl: (52) Empty reply from server라는 메시지만 반복됩니다.
curl: (52) Empty reply from server
하지만 또 Empty reply from server입니다.
https로 시도합니다.
> curl -u [ID:PW] -XGET "https://localhost:9200/_cat/indices?v"
새로운 오류입니다.
인증이 되지 않으므로 -k 옵션을 추가합니다.
-k 옵션을 사용하면 https에서 SSL 검증 없이 연결이 가능합니다.
> curl -u [ID:PW] -XGET "https://localhost:9200/_cat/indices?v" -k
감사합니다.
728x90
반응형
'Elastic Search AI Platform' 카테고리의 다른 글
Elasticsearch fingerprint 확인 하기 (2) | 2024.11.12 |
---|---|
Logstash Input http_poller vs http 비교 (1) | 2024.11.08 |
Elastic Certified Engineer exan (엘라스틱 엔지니어 자격 시험) 후기 (1) | 2024.10.24 |