Elasticsearch -head 查询报 406错误码
Posted wzx1blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Elasticsearch -head 查询报 406错误码相关的知识,希望对你有一定的参考价值。
问题:利用Elasticsearch -head插件不能查看数据或者在Elasticsearch -linux的curl命令操作时总是提示:
{"error":"Content-Type header [application/x-www-form-urlencoded] is not supported","status":406}
解决办法:
1、进入head安装目录;
2、cd _site/
3、编辑vendor.js 共有两处
①、6886行 contentType: "application/x-www-form-urlencoded,改成:contentType: "application/json;charset=UTF-8"
②、7574行 var inspectData = s.contentType === "application/x-www-form-urlencoded" &&,改成:var inspectData = s.contentType === "application/json;charset=UTF-8" &&
原因2:在curl中,是在报文Content-type的参数:application/x-www-form-urlencoded不支持Json发送。需要改成application/Json。所以需要添加参数 ; -H ‘Content-Type: application/json’或者直接在终端操作命令时修改操作命令:
原命令:
curl -XGET ‘http://localhost:9200/_count?pretty‘ -d ‘ { "query": { "match_all": {} } } ‘
修改后命令:
curl -XGET ‘localhost:9200/_count?pretty‘ -H ‘content-Type:application/json‘ -d ‘
{
"query":{
"match_all":{}
}
或:curl -H "Content-Type: application/json" http://localhost:9200/tmdb/_search?pretty -d ‘ {"query": {"match_all": {}}}‘
以上是关于Elasticsearch -head 查询报 406错误码的主要内容,如果未能解决你的问题,请参考以下文章
python elasticsearch date_histogram聚合查询