[ES]Content-Type header [application/x-www-form-urlencoded] is not supported# DataBase/Elasticsearch2022. 10. 4. 16:04
Table of Contents
728x90
반응형
수정전
[darksharavim.tistory.com]curl -XPOST http://localhost:9200/classes/class/1?pretty -d '
{"title" : "Algorithm", "professor" : "John"}'
{
"error" : "Content-Type header [application/x-www-form-urlencoded] is not supported",
"status" : 406
}
ES6.0이후 정책으로 인하여 헤더에 컨텐츠타입을 지정해줘야함.
수정후
[darksharavim.tistory.com]curl -XPOST http://localhost:9200/classes/class/1?pretty
>-H 'Content-Type: application/json'
>-d '
> {"title" : "Algorithm", "professor" : "John"}'
{
"_index" : "classes",
"_type" : "class",
"_id" : "1",
"_version" : 1,
"result" : "created",
"_shards" : {
"total" : 2,
"successful" : 1,
"failed" : 0
},
"_seq_no" : 0,
"_primary_term" : 1
}
결과
[darksharavim.tistory.com]curl -XGET http://localhost:9200/classes/class/1?pretty
{
"_index" : "classes",
"_type" : "class",
"_id" : "1",
"_version" : 1,
"_seq_no" : 0,
"_primary_term" : 1,
"found" : true,
"_source" : {
"title" : "Algorithm",
"professor" : "John"
}
}
728x90
반응형
'# DataBase > Elasticsearch' 카테고리의 다른 글
logstash grok 정규표현식 (0) | 2022.09.02 |
---|---|
[elasticsearch]heap out of memory(OOM) (0) | 2022.08.19 |
kibana 8.2.3 install (0) | 2022.06.17 |
logstash 8.2.3 install (0) | 2022.06.17 |
[elasticsearch]bootstrap check failure (0) | 2022.06.16 |
@다크쉐라빔 :: 다크쉐라빔의 주절주절
안녕하세요. 이곳은 IT위주의 잡다한 정보를 올려두는 개인 블로그입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!