Elasticsearch 学习
安装
1.安装
镜像:https://mirrors.huaweicloud.com/
windows启动
测试:http://localhost:9200/
2.插件安装
3.本地运行多个es实例
多个CMD执行以下命令(会有Could not rename log file 'logs/gc.log' to 'logs/gc.log.01' (Permission denied).错误,不影响访问)
测试:http://localhost:9200/_cat/nodes
4.kibana安装
镜像:https://mirrors.huaweicloud.com/
windows启动
设置中文,kibana.yml 增加一行 i18n.locale: "zh-CN"
测试:http://localhost:5601/
5.logstatsh安装
测试数据集:https://grouplens.org/datasets/movielens/
镜像:https://mirrors.huaweicloud.com/
修改配置文件:logstash.conf 放到bin目录下
启动:logstash.bat -f logstash.conf
ES入门
1.相关概念:
1).索引;文档;字段;mapping;DSL;
2).文档元数据:_index ;_type;_id;_source;_version;_score
3).节点:Master node;Data node;Coordingatng node;
4).分片:主分片;副本;
评论