• elasticsearch完整学习


    elasticsearch

    一、概念

    1、ELKStack简介(都是java架构,需要jdk底层)
    什么是ELK?通俗来讲,ELK是由ElasticsearchLogstash、Kibana 三个开源软件组成的一个组合体,这三个软件当中,每个软件用于完成不同的功能,ELK又称ELKstack,官网 https://www.elastic.co/
    2、Elasticsearch
    elasticsearch是一个高度可扩展全文搜索和分析引擎,基于Apache Lucene 构建,能对大容量的数据进行接近实时的存储、搜索和分析操作,可以处理大规模日志数据,比如Nginx、Tomcat、系统日志等功能。
    3、Logstash
    数据收集引擎。它支持动态的从各种数据源搜集数据,并对数据进行过滤、分析、丰富、统一格式等操作,然后 存储到用户指定的位置;支持普通log、自定义json格式的日志解析。
    4、Kibana
    数据分析和可视化平台。通常与 Elasticsearch 配合使用,对其中数据进行搜索、分析和以统计图表的方式展示。开源 不等于免费 --> ELK --> 开源 | logstash 插件 --> 收集 免费 - 监控 收费的
    5、beats:多种数据采集器的集合,用于实现从边缘机器向logstash 和Elasticsearch发送数据,其中应用最多的是filebeat,是一个轻量级日志采集器。

    二、ELK集群部署

    1) Elasticsearch 介绍
    Elasticsearch(简称ES)是一个分布式、RESTful风格的搜索和数据分析引擎,用于集中存储日志数据
    1.关闭防火墙和selinux,host绑定
    192.168.8.138    h2    3G内存(这里设置一下虚拟机的内存)
    192.168.8.139    h3    3G内存
    2、部署jre环境(jdk-8u301-linux-x64.rpm)
    # rpm -ivh jdk-8u301-linux-x64.rpm/etc/profile下写入
    export JAVA_HOME=/usr/java/jdk1.8.0_301-amd64    #这里安装路径自动定位在这里
    export CLASSPATH=$CLASSPATH:$JAVA_HOME/lib:$JAVA_HOME/fre/lib
    export PATH=$JAVA_HOME/bin:$JAVA_HMOE/jre/bin:$PATH
    [root@hd2 ~]# source /etc/profile   
    #查看java版本
    [root@hd2 ~]# java -version  
    3、安装elasticsearch
    [root@hd1 ~]# mkdir /opt/elk
    [root@hd1 ~]# mv elasticsearch-7.9.3-linux-x86_64.tar.gz /opt/elk 
    [root@hd1 ~]# cd /opt/elk
    [root@hd1 elk]# tar zxvf elasticsearch-7.9.3-linux-x86_64.tar.gz 
    [root@hd1 elk]# mv elasticsearch-7.9.3 elasticsearch
    [root@hd1 elk]# cd elasticsearch 
    [root@hd1 elasticsearch]# ls
    bin	config	jdk	lib	LICENSE.txt	logs	modules 
    这里启动不可以使用root用户,需要新创建一个用户es
    4、配置最大进程
    [root@hd1 ~]# useradd es
    [root@hd1 ~]# chown -R es.es /opt/elk 
    [root@hd1 ~]# ulimit -n
    1024
    调整进程最大值
    [root@hd1 ~]# ulimit -n 65535
    永久修改修改 (nofile number open file)
    [root@hd1 ~]# tail -3 /etc/security/limits.conf
    * hard nofile 65535
    * soft nofile 65535
    * soft nproc 4096
    * hard nproc 4096 
    # End of file
    调整进程最大虚拟内存区域数量临时设置
    [root@hd1 ~]# sysctl -w vm.max_map_count=262144 
    vm.max_map_count = 262144
    永久设置
    [root@hd1 ~]# echo "vm.max_map_count=262144" >>/etc/sysctl.conf [root@hd1 ~]# sysctl -p
    vm.max_map_count = 262144
    配置完成后,需要重启用户,这里需要重启虚拟机  reboot
    5、修改配置文件
    [root@hd1 ~]# vi /opt/elk/elasticsearch/config/elasticsearch.yml 
    cluster.name: elk-cluster	#集群的名称,两个节点保持一致
    node.name: node-1	#集群节点的名字
    path.data: /opt/elk/data #数据的路径
    path.logs: /opt/elk/logs #日志的路径
    network.host: 0.0.0.0	#监听的ip地址
    http.port: 9200
    discovery.seed_hosts: ["192.168.8.138", "192.168.8.139"] #发现集群中的其他节点cluster.initial_master_nodes: ["node-1"] #设置主节点
    6、设置es的权限
    [root@hd1 ~]# mkdir /opt/elk/data 
    [root@hd1 ~]# mkdir /opt/elk/logs 
    [root@hd1 ~]# chown -R es.es /opt/elk
    7、生成启动脚本
    [root@hd1 ~]# cat /usr/lib/systemd/system/elasticsearch.service 
    [Unit]
    Description=elasticsearch 
    [Service]
    User=es 
    LimitNOFILE=65535
    ExecStart=/opt/elk/elasticsearch/bin/elasticsearch 
    ExecReload=/bin/kill -HUP $MAINPID 
    KillMode=process
    #Restart=on-failure
    
    [Install]
    WantedBy=multi-user.target
    8、启动测试
    [root@hd1 ~]# systemctl daemon-reload 
    [root@hd1 ~]# systemctl start elasticsearch
    查看启动报错,一般是看日志
    # journalctl -u elasticsearch
    查看监听的端口,9300用于内部集群之间的通信
    [root@hd1 config]# ss -ant |grep 9300 LISTEN	0	128	:::9300	:::*
    [root@hd1 config]# ss -ant |grep 9200 LISTEN	0	128	:::9200	:::*
    **********************************************************************
    配置192.168.8.139
    [root@hd2 ~]# mkdir -p /opt/elk 
    [root@hd2 ~]# useradd es
    [root@hd1 ~]# scp -r /opt/elk/* root@192.168.1.12:/opt/elk/ #将8.138的文件scp过来
    [root@hd2 ~]# cd /opt/elk
    [root@hd2 elk]# ls
    data elasticsearch logs 
    [root@hd2 elk]# rm -rf logs/* 
    [root@hd2 elk]# rm -rf data/*
    将配置文件指定master的属性注释掉,将node的名字改成node-2
    [root@hd2 elk]#cd /opt/elk/elasticsearch/config/
    [root@hd2 config]# grep master_nodes: elasticsearch.yml 
    node.name: node-2
    #cluster.initial_master_nodes: ["node-1"]
    将启动脚本文件拷贝过去
    [root@hd1 ~]# scp -r /usr/lib/systemd/system/elasticsearch.service root@192.168.8.139:/usr/lib/systemd/system/
    启动服务
    [root@hd2 ~]# useradd es
    [root@hd2 ~]# chown -R es.es /opt/elk/
    [root@hd2 ~]# ulimit -n 65535 
    [root@hd2 ~]# vi /etc/security/limits.conf
    * hard nofile 65535
    * soft nofile 65535
    * soft nproc 4096
    * hard nproc 4096 
    [root@hd2 ~]# sysctl -w vm.max_map_count=262144 
    vm.max_map_count = 262144
    [root@hd2 ~]# echo "vm.max_map_count=262144" >>/etc/sysctl.conf 
    [root@hd2 ~]# sysctl -p
    这里需要重启用户 reboot
    [root@hd2 ~]# systemctl daemon-reload 
    [root@hd2 ~]# systemctl start elasticsearch 
    [root@hd2 ~]# ps -ef |grep elastic
    
    查看报错--日志
    # cat /opt/elk/logs/elk-cluster.log
    # journalctl -u elasticsearch
    
    查看集群各个节点状态
    # curl -XGET "http://127.0.0.1:9200/"
    {
    "name" : "node-2", 
    "cluster_name" : "elk-cluster",
    "cluster_uuid" : "6Bq-5r02QD2fvGQqGOv4Kg", 
    "version" : {
    "number" : "7.9.3",
    "build_flavor" : "default",
    "build_type" : "tar",
    "build_hash" : "c4138e51121ef06a6404866cddc601906fe5c868", 
    "build_date" : "2020-10-16T10:36:16.141335Z",
    "build_snapshot" : false, 
    "lucene_version" : "8.6.2",
    "minimum_wire_compatibility_version" : "6.8.0", 
    "minimum_index_compatibility_version" : "6.0.0-beta1"
    },
    "tagline" : "You Know, for Search"
    }
    这里的uuid必须是一样的,如果不一样就是没有同步
    
    查看集群情况,带*号的表示是master
    [root@hd1 ~]# curl -XGET 'http://127.0.0.1:9200/_cat/nodes?pretty' 
    192.168.8.138 10 74 6 0.16 0.29 0.20 dilmrt * node-1
    192.168.8.139 16 75 5 0.04 0.20 0.18 dilmrt - node-2
    
    Master和Slave的区别: 
    Master的职责:
    统计各node节点状态信息、集群状态信息统计、索引的创建和删除、索引分配的管理、关闭node节点等
    Savle的职责:
    同步数据、等待机会成为Master
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150

    三、图形化界面

    图形管理ES
    [root@hd1 ~]# cd /opt/elk/ 
    [root@hd1 elk]# rz -y
    elasticHD_linux_amd64.zip 
    [root@hd1 elk]# unzip elasticHD_linux_amd64.zip 
    Archive: elasticHD_linux_amd64.zip
    inflating: ElasticHD
    [root@hd1 elk]# nohup ./ElasticHD &
    [root@hd1 elk]# tail nohup.out -f
    To view elasticHD console open http://0.0.0.0:9800 in browser 
    exec: "xdg-open": executable file not found in $PATH
    访问页面
    192.168.8.138:9800
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    四、部署安装logstash


    待续…

  • 相关阅读:
    Python爬虫解析器BeautifulSoup4
    网络安全事件应急演练方案
    PC_输入输出系统/设备_I/O系统(IO接口)基础
    谷歌护眼插件Dark Reader下载安装使用
    排序算法—插入排序快速排序
    【剑指offer】Java中数组、字符串的长度获取区别 length、length()、size()
    利用SOP完成新客户培育
    HashMap的面试题
    jpa、hibernate、spring-data-jpa关系
    基于Java+Springboot+vue体育用品销售商城平台设计和实现
  • 原文地址:https://blog.csdn.net/qq_48975137/article/details/134000163