이전에는 ElasticSearch 5.2를 사용했으며 6.0으로 업그레이드했습니다.
나는 가이드 다음 인덱스 템플릿을 생성하려고 여기 지만, 오류가 발생했습니다
Content-Type header [application/x-www-form-urlencoded] is not supported
내 질문은
curl -X PUT localhost:9200/_template/template_1 -d '
{
"index_patterns": ["te*", "bar*"],
"mappings": {
"type1": {
"properties": {
"host_name": {
"type": "keyword"
}
}
}
}
}'