ELK学习总结(1-2)安装ElasticSearch

时间:2021-06-19 16:40:35

1、下载安装

     Centos6.4

     jdk1.8.20以上

elasticsearch::https://www.elastic.co/downloads/elasticsearch

wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.2.2.tar.gz

ll

tar -zxf elasticsearch-5.2.2.tar.gz

./bin/elasticsearch -d (-d后台运行)

web访问地址:http://localhost:9200

cat /logs/elasticsearch.log

2、目录结构

     bin 命令目录

elasticsearch.in.sh中,最大最小内存参数。

     config 配置文件目录

elasticsearch.yml,修改cluster名称等

logging.yml

     data 索引数据

elasticsearch\nodes

     lib

jar包,包括lucence用到的jar包

     logs 日志

         

     plugins  插件目录

         

3、插件介绍

百度搜索:分词插件,同步插件,数据同步插件,等等

head插件:集群管理工具,html5编写

         安装插件:./plugin -install mobz/elasticsearch-head

访问地址:http://192.168.1.10:9200/_plugin/head/

显示信息:json格式返回

概览:节点列表、

索引:新建索引

数据浏览:

基本查询:

符合查询:restful风格的查询,使用http方法,提交json参数到url、索引、文件系统。

bigdesk插件:集群监控工具,查看集群状态,如:cpu、内存、索引、搜索、http连接

官网和github

安装插件:sudo  elasticsearch/bin/plugin -install lukas-vlcek/bigdesk/2.5.0

访问地址:http://192.168.1.10:9200/_plugin/bigdesk/

jvm使用情况、os、process等使用情况。

 4、插件安装

      cd /opt/elasticsearch-1.7.1/bin

      ll

      ./plugin -install mobz/elasticsearch-head