[Elasticsearch] curl 인증 및 명령어 user 사용
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" 새로운 오..