elasticsearch 下载/安装
官网地址:
Elastic — The Search AI Company | ElasticPower insights and outcomes with The Elastic Search AI Platform. See into your data and find answers that matter with enterprise solutions designed to help you accelerate time to insight. Try Elastic ...https://www.elastic.co/
下载elasticsearch
根据具体情况选择对应的平台/版本
windows
bin/elasticsearch.bat
启动后会在控制台输出密码(用户名为:elastic)和登记认证enrollment token (介入kanb)
注:手动再次生成密码
elasticsearch-reset-password.bat -u elastic -i
下载kanbanal
Download Kibana Free | Get Started Now | ElasticDownload Kibana or the complete Elastic Stack (formerly ELK stack) for free and start visualizing, analyzing, and exploring your data with Elastic in minutes....https://www.elastic.co/downloads/kibana
windows
./bin/kibana.bat
会在弹出的cmd 界面给出浏览器的访问路径
http://localhost:5601
配置 enrollment token 即可访问
注:手动再次生成enrollment token
.\elasticsearch-create-enrollment-token.bat -s kibana
修中文化
修改 config\kibana.yml 文件
i18n.locale: "zh-CN"
简单使用
#创建新索引
PUT /student?pretty
#查询指定索引的数据
GET /student/_search
{"query": {"match_all": {}}
}
#更新或插入字段(清除以前的并全覆盖)
PUT /student/_doc/1
{"name": "Lily","age": 17
}
PUT /student/_doc/1
{"age": 18
}
#更新数据(更新指定字段,不影响其他字段)
POST /student/_update/1
{"doc": {"age": 14}
}