ElasticSearch 5.2 kullanıyordum ve 6.0'a yükselttim.
Buradaki kılavuzu takip eden bir dizin şablonu oluşturmaya çalışıyorum , ancak hata aldım
Content-Type header [application/x-www-form-urlencoded] is not supported
Benim sorgum
curl -X PUT localhost:9200/_template/template_1 -d '
{
"index_patterns": ["te*", "bar*"],
"mappings": {
"type1": {
"properties": {
"host_name": {
"type": "keyword"
}
}
}
}
}'