[elasticsearch] Content-Type header [application/x-www-form-urlencoded] is not supported (406 에러)
1. 현상 CLI(Command-line interface) 환경에서 ES 서버에 REST API 활용하여 데이터 처리 시 나타나는 에러 4xx에러로 클라이언트의 문제입니다. # curl -X GET \ -d '{"query": {"match": {"name": "jk"}}}' \ localhost:9200/stock_sale_log/_search | jq { "error": "Content-Type header [application/x-www-form-urlencoded] is not supported", "status": 406 } 2. 원인 엄격한 콘텐츠 유형 검사 Elasticsearch 6.0부터 본문을 포함하는 모든 REST 요청은 해당 본문에 대한 올바른 콘텐츠 유형도 제공해야 합니다. 3..