当前位置:
首页 >
ElasticSearch 6.0.0 IK分词 Kibana 6.0.0
发布时间:2025/3/21
37
豆豆
生活随笔
收集整理的这篇文章主要介绍了
ElasticSearch 6.0.0 IK分词 Kibana 6.0.0
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
ElasticSearch 6.0.0 & IK分词 & Kibana 6.0.0
1. 安装ES 6.0.0
docker run -itd -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" --name=elasticsearch docker.elastic.co/elasticsearch/elasticsearch:6.0.02. 安装Kibana 6.0.0
docker run -dit -p 5601:5601 --name=kibana --link elasticsearch:elasticsearch docker.elastic.co/kibana/kibana:6.0.03. 安装 ik 插件
elasticsearch-plugin install https://github.com/medcl/elasticsearch-analysis-ik/releases/download/v6.0.0/elasticsearch-analysis-ik-6.0.0.zip4. 重启ES
5. 创建索引
curl -XPUT http://localhost:9200/index6.设置映射
curl -XPOST http://localhost:9200/index/fulltext/_mapping -d' {"properties": {"content": {"type": "text","analyzer": "ik_max_word","search_analyzer": "ik_max_word","term_vector": "with_positions_offsets","fielddata" : true}} }'7.插入数据
curl -XPOST http://localhost:9200/index/fulltext/1 -d' {"content":"美国留给伊拉克的是个烂摊子吗" }'8.查询
GET /index/fulltext/_search {"size" : 0,"query": {"term": {"_id": {"value": "2"}}}, "aggs" : { "cipin" : { "terms" : { "size": 100, "field" : "content","include" : "本职工作|财务管理"}}} } 《新程序员》:云原生和全面数字化实践50位技术专家共同创作,文字、视频、音频交互阅读总结
以上是生活随笔为你收集整理的ElasticSearch 6.0.0 IK分词 Kibana 6.0.0的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: redis 实际应用中的缓存作用
- 下一篇: 将军令:数据安全平台建设实践