5.5.0 이상 버전에서 아래와 같은 에러 발생 시
{"error":"Content-Type header [application/x-www-form-urlencoded] is not supported","status":406}
커맨드 끝에 아래처럼 타입을 설정해줘야한다. (불편불편...)
-H 'Content-Type: application/json'
Example)
curl -XPUT '11.123.45.67:9200/myindex/_settings' -d '{ "index" : {
"number_of_replicas" : 0
}
}' -H 'Content-Type: application/json
'IT > Elasticsearch' 카테고리의 다른 글
[Elasticsearch] snapshot (backup) 생성 (0) | 2017.08.01 |
---|---|
[Elasticsearch] php에서 elasticsearch 다루기 (0) | 2017.04.24 |
[delete_by_query] 쿼리 & 삭제 (0) | 2017.03.27 |
[Elasticsearch] 성능 극대화 (0) | 2016.12.15 |
[Elasticsearch] 스케일 아웃 (0) | 2016.12.15 |