1、接近实时(NRT)
lasticsearch是一个接近实时的搜索平台,这意味着,从索引一个文档直到这个文档能够被搜索到有一个轻微的延迟(通常是1秒)
2、集群(cluster)
一个集群就是由一个或多个节点组织在一起,它们共同持有你整个的数据,并一起提供索引和搜索功能。其中一个节点为主节点,这个主节点是可以通过选举产生的,并提供跨节点的联合索引和搜索的功能。集群有一个唯一性标示的名字,默认是elasticsearch,集群名字很重要,每个节点是基于集群名字加入到其集群中的。因此,确保在不同环境中使用不同的集群名字。一个集群可以只有一个节点。强烈建议在配置elasticsearch时,配置成集群模式。
3、节点(node)
节点就是一台单一的服务器,是集群的一部分,存储数据并参与集群的索引和搜索功能。像集群一样,节点也是通过名字来标识,默认是在节点启动时随机分配的字符名。当然,你可以自己定义。该名字也很重要,在集群中用于识别服务器对应的节点。
节点可以通过指定集群名字来加入到集群中。默认情况,每个节点被设置成加入到elasticsearch集群。如果启动了多个节点,假设能自动发现对方,他们将会自动组建一个名为elasticsearch的集群。
4、索引(index)
一个索引就是一个拥有几分相似特征的文档的集合。比如说,你可以有一个客户数据的索引,另一个产品目录的索引,还有一个订单数据的索引。一个索引由一个名字来标识(必须全部是小写字母的),并且当我们要对对应于这个索引中的文档进行索引、搜索、更新和删除的时候,都要使用到这个名字。在一个集群中,如果你想,可以定义任意多的索引。
索引相对于关系型数据库的库。
5、类型(type)
在一个索引中,你可以定义一种或多种类型。一个类型是你的索引的一个逻辑上的分类/分区,其语义完全由你来定。通常,会为具有一组共同字段的文档定义一个类型。比如说,我们假设你运营一个博客平台并且将你所有的数据存储到一个索引中。在这个索引中,你可以为用户数据定义一个类型,为博客数据定义另一个类型,当然,也可以为评论数据定义另一个类型。类型相对于关系型数据库的表
6、文档(document)
一个文档是一个可被索引的基础信息单元。比如,你可以拥有某一个客户的文档,某一个产品的一个文档,当然,也可以拥有某个订单的一个文档。文档以JSON(Javascript Object Notation)格式来表示,而JSON是一个到处存在的互联网数据交互格式。
在一个index/type里面,只要你想,你可以存储任意多的文档。注意,虽然一个文档在物理上位于一个索引中,实际上一个文档必须在一个索引内被索引和分配一个类型。文档相对于关系型数据库的列。
7、分片和副本(shards & replicas)
在实际情况下,索引存储的数据可能超过单个节点的硬件限制。如一个10亿文档需1TB空间可能不适合存储在单个节点的磁盘上,或者从单个节点搜索请求太慢了。为了解决这个问题,elasticsearch提供将索引分成多个分片的功能。当在创建索引时,可以定义想要分片的数量。每一个分片就是一个全功能的独立的索引,可以位于集群中任何节点上。
分片的两个最主要原因:a. 水平分割扩展,增大存储量 b. 分布式并行跨分片操作,提高性能和吞吐量
分布式分片的机制和搜索请求的文档如何汇总完全是由elasticsearch控制的,这些对用户而言是透明的。
网络问题等等其它问题可以在任何时候不期而至,为了健康性,强烈建议要有一个故障切换机制,无论何种故障以防止分片或者节点不可用。为此,elasticsearch让我们将索引分片复制一份或多份,称之为分片副本或副本。
副本也有两个最主要原因:
a. 高可用性,以应对分片或者节点故障。出于这个原因,分片副本要在不同的节点上。
b. ×××能,增大吞吐量,搜索可以并行在所有副本上执行。
总之,每个索引可以被分成多个分片。一个索引也可以被复制0次(意思是没有复制)或多次。一旦复制了,每个索引就有了主分片(作为复制源的原来的分片)和复制分片(主分片的拷贝)之别。分片和副本的数量可以在索引创建的时候指定。
在索引创建之后,你可以在任何时候动态地改变副本的数量,但是你事后不能改变分片的数量。
默认情况下,Elasticsearch中的每个索引被分片5个主分片和1个副本,这意味着,如果你的集群中至少有两个节点,你的索引将会有5个主分片和另外5个副本分片(1个完全拷贝),这样的话每个索引总共就有10个分片。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-IzGYLuYH-1586097337385)(H:\markdown图片\1.png)]
VMware Workstation
centos7(node1),IP地址:192.168.73.100
centos7(node2),IP地址:192.168.73.101
centos7(node2),IP地址:192.168.73.102
[root@localhost ~]# hostnamectl set-hostname apache
[root@localhost ~]# su
[root@apache ~]#
[root@node1 ~]# vi /etc/hosts
192.168.73.100 node1
192.168.73.101 node2
[root@node1 ~]# systemctl stop firewalld.service
[root@node1 ~]# systemctl disable firewalld.service
Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
[root@node1 ~]# setenforce 0
[root@node1 ~]# vi /etc/sysconfig/selinux
SELINUX=disabled '//修改为disabled'
[root@node1 ~]# yum install -y java-1.8.0 '//检查Java环境,jdk不低于1.8'
[root@node1 ~]# java -version
openjdk version "1.8.0_242"
OpenJDK Runtime Environment (build 1.8.0_242-b08)
OpenJDK 64-Bit Server VM (build 25.242-b08, mixed mode)
[root@node1 ~]# yum install gcc gcc-c++ make glibc-devel zlib-devel openssl-devel libidn-devel pcre-devel -y
[root@node1 ~]# cd /opt
[root@node1 opt]# ls
elasticsearch-5.5.0.rpm kibana-5.5.1-x86_64.rpm node-v8.2.1.tar.gz rh
elasticsearch-head.tar.gz logstash-5.5.1.rpm phantomjs-2.1.1-linux-x86_64.tar.bz2
[root@node1 opt]# rpm -ivh elasticsearch-5.5.0.rpm
[root@node1 opt]# cp /etc/elasticsearch/elasticsearch.yml /etc/elasticsearch/elasticsearch.yml.bak
[root@node1 opt]# vi /etc/elasticsearch/elasticsearch.yml
cluster.name: my-elk-cluster '//集群名字'
node.name: node1 '//节点名字,在node2节点上修改为node2'
path.data: /data/elk_data '//数据存放路径'
path.logs: /var/log/elasticsearch/ '//数据存放路径'
bootstrap.memory_lock: false '//不在启动的时候锁定内存'
network.host: 0.0.0.0 '//提供服务绑定的IP地址,0.0.0.0代表所有地址'
http.port: 9200 '//侦听端口为9200'
discovery.zen.ping.unicast.hosts: ["node1", "node2"] '//集群发现通过单播实现'
[root@node1 opt]# mkdir -p /data/elk_data '//创建存放路径'
[root@node1 opt]# chown elasticsearch:elasticsearch /data/elk_data/ '//设置数组和属主'
[root@node1 opt]# systemctl daemon-reload '//加载系统服务'
[root@node1 opt]# systemctl enable elasticsearch.service '//设置开机自启'
Created symlink from /etc/systemd/system/multi-user.target.wants/elasticsearch.service to /usr/lib/systemd/system/elasticsearch.service.
[root@node1 opt]# systemctl start elasticsearch.service '//启动elasticsearch'
[root@node1 opt]# netstat -antp |grep 9200 '//检测是否开启成功,此处会有一些延时,如果没有可多刷新几次查看'
tcp6 0 0 :::9200 :::* LISTEN 76161/java
192.168.73.100:9200
192.168.73.101:9200
检查健康:192.168.73.100:9200/_cluster/health?pretty
检查健康:192.168.73.101:9200/_cluster/health?pretty
检查状态:192.168.73.100:9200/_cluster/state?pretty
检查状态:192.168.73.101:9200/_cluster/state?pretty
[root@node1 opt]# tar zxf node-v8.2.1.tar.gz '//软件包刚刚已经上传了'
[root@node1 opt]# cd node-v8.2.1/
[root@node1 node-v8.2.1]# ./configure
[root@node1 node-v8.2.1]# make -j3 '//编译,指定4个线程数(根据自己CPU情况来),加快速度'
全程大概半小时左右
[root@node1 node-v8.2.1]# make install
[root@node1 node-v8.2.1]# cd ..
[root@node1 opt]# ls
elasticsearch-5.5.0.rpm logstash-5.5.1.rpm phantomjs-2.1.1-linux-x86_64.tar.bz2
elasticsearch-head.tar.gz node-v8.2.1 rh
kibana-5.5.1-x86_64.rpm node-v8.2.1.tar.gz
[root@node1 opt]# cp phantomjs-2.1.1-linux-x86_64.tar.bz2 /usr/local/src '//将软件包复制到指定目录'
[root@node1 opt]# cd /usr/local/src
[root@node1 src]# ls
phantomjs-2.1.1-linux-x86_64.tar.bz2
[root@node1 src]# tar jxf phantomjs-2.1.1-linux-x86_64.tar.bz2 '//解压'
[root@node1 src]# cd phantomjs-2.1.1-linux-x86_64/
[root@node1 phantomjs-2.1.1-linux-x86_64]# cd bin/
[root@node1 bin]# cp phantomjs /usr/local/bin '//将phantomjs命令让系统可以识别'
[root@node1 bin]# cd ../..
[root@node1 src]# cp /opt/elasticsearch-head.tar.gz ./ '//将刚刚上传到/opt目录下的tar包辅助到本目录'
[root@node1 src]# ls
elasticsearch-head.tar.gz phantomjs-2.1.1-linux-x86_64 phantomjs-2.1.1-linux-x86_64.tar.bz2
[root@node1 src]# tar zxf elasticsearch-head.tar.gz '//解压'
[root@node1 src]# cd elasticsearch-head/
[root@node1 elasticsearch-head]# npm install '//初始化项目'
[root@node1 elasticsearch-head]# vi /etc/elasticsearch/elasticsearch.yml
http.cors.enabled: true '//开启跨域访问支持,默认为false'
http.cors.allow-origin: "*" '//跨域访问允许的域名地址,支持使用正则'
[root@node1 elasticsearch-head]# systemctl restart elasticsearch
[root@node1 elasticsearch-head]# npm run start & '//启动项目,切换到后台运行'
[1] 109368
[root@node1 elasticsearch-head]#
> [email protected] start /usr/local/src/elasticsearch-head
> grunt server
Running "connect:server" (connect) task
Waiting forever...
Started connect web server on http://localhost:9100
[root@node1 elasticsearch-head]# netstat -ntap |grep 9100 '//检测端口是否开启'
tcp 0 0 0.0.0.0:9100 0.0.0.0:* LISTEN 88880/grunt
[root@node1 elasticsearch-head]# netstat -ntap |grep 9200 '//检测端口是否开启'
tcp6 0 0 :::9200 :::* LISTEN 108283/java
输入192.168.73.100.9100
[root@node1 ~]# curl -XPUT 'localhost:9200/index-demo/test/1?pretty&pretty' -H 'content-Type: application/json' -d '{"user":"zhangsan","mesg":"hello world"}' '//创建索引'
{
"_index" : "index-demo",
"_type" : "test",
"_id" : "1",
"_version" : 1,
"result" : "created",
"_shards" : {
"total" : 2,
"successful" : 2,
"failed" : 0
},
"created" : true
}
[root@apache ~]# yum -y install httpd
[root@apache ~]# systemctl start httpd
[root@apache ~]# netstat -ntap |grep httpd
tcp6 0 0 :::80 :::* LISTEN 11709/httpd
[root@apache ~]# cd /opt
[root@apache opt]# ls
elasticsearch-5.5.0.rpm kibana-5.5.1-x86_64.rpm node-v8.2.1.tar.gz rh
elasticsearch-head.tar.gz logstash-5.5.1.rpm phantomjs-2.1.1-linux-x86_64.tar.bz2
[root@apache opt]# rpm -ivh logstash-5.5.1.rpm '//因为软件包之前上传过了,此处直接安装即可'
[root@apache opt]# systemctl start logstash.service
[root@apache opt]# systemctl status logstash.service
[root@apache opt]# systemctl enable logstash.service
Created symlink from /etc/systemd/system/multi-user.target.wants/logstash.service to /etc/systemd/system/logstash.service.
[root@apache opt]# ln -s /usr/share/logstash/bin/logstash /usr/local/bin/ '//创建命令软连接'
Logstash这个命令测试
字段描述解释:
● -f 通过这个选项可以指定logstash的配置文件,根据配置文件配置logstash
● -e 后面跟着字符串 该字符串可以被当做logstash的配置(如果是” ”,则默认使用stdin做为输入、stdout作为输出)
● -t 测试配置文件是否正确,然后退出
'//输入采用标准输入 输出采用标准输出,进行测试'
[root@apache opt]# logstash -e 'input { stdin{} } output { stdout{} }'
...省略内容
08:13:58.036 [Api Webserver] INFO logstash.agent - Successfully started Logstash API endpoint {:port=>9600} '//等待出现此API接口端口号'
www.baidu.com '//输入网址'
2020-03-26T00:14:22.175Z apache www.baidu.com
www.sina.com.cn '//输入网址'
2020-03-26T00:14:34.494Z apache www.sina.com.cn
www.taobao.com '//输入网址'
2020-03-26T00:15:02.934Z apache www.taobao.com
'//都没问题,可以Ctrl + c取消了'
'//测试:使用rubydebug显示详细输出,codec为一种编解码器'
[root@apache opt]# logstash -e 'input { stdin{} } output { stdout{ codec=>rubydebug } }'
...省略内容
08:18:02.693 [Api Webserver] INFO logstash.agent - Successfully started Logstash API endpoint {:port=>9600} '//等待出现此API接口端口号'
www.baidu.com '//输入网址'
{
"@timestamp" => 2020-03-26T00:18:36.377Z,
"@version" => "1",
"host" => "apache",
"message" => "www.baidu.com"
}
'//没问题,可以Ctrl + c取消了'
'//使用logstash将信息写入elasticsearch中'
[root@apache opt]# logstash -e 'input { stdin{} } output { elasticsearch { hosts=>["192.168.73.100:9200"] } }'
...省略内容
08:20:49.817 [Api Webserver] INFO logstash.agent - Successfully started Logstash API endpoint {:port=>9600} '//等待出现此API接口端口号'
www.baidu.com '//输入网址'
www.sina.com.cn '//输入网址'
www.google.com.cn '//输入网址'
'//没问题,可以Ctrl + c取消了'
Logstash配置文件主要由三部分组成:input、output、filter(根据需要来处理)
[root@apache opt]# chmod o+r /var/log/messages '//给其他用户读的权限'
[root@apache opt]# ll /var/log/messages
-rw----r--. 1 root root 937039 3月 26 08:36 /var/log/messages
[root@apache opt]# vi /etc/logstash/conf.d/system.conf '//编辑配置文件'
input {
file{
path => "/var/log/messages"
type => "system"
start_position => "beginning"
}
}
output {
elasticsearch {
hosts => ["192.168.73.100:9200"]
index => "system-%{+YYYY.MM.dd}"
}
}
[root@apache opt]# systemctl restart logstash.service
[root@node1 ~]# cd /usr/local/src/
[root@node1 src]# cp /opt/kibana-5.5.1-x86_64.rpm ./
[root@node1 src]# rpm -ivh kibana-5.5.1-x86_64.rpm
[root@node1 src]# cd /etc/kibana/
[root@node1 kibana]# cp kibana.yml kibana.yml.bak '//备份配置文件'
[root@node1 kibana]# vi kibana.yml '//编辑配置文件'
server.port: 5601 '//kibana打开的端口'
server.host: "0.0.0.0" '//kibana侦听的地址'
elasticsearch.url: "http://192.168.73.100:9200" '//和elasticsearch建立联系'
kibana.index: ".kibana" '//在elasticsearch中添加.kibana索引'
[root@node1 kibana]# systemctl start kibana.service
[root@node1 kibana]# systemctl enable kibana.service
Created symlink from /etc/systemd/system/multi-user.target.wants/kibana.service to /etc/systemd/system/kibana.service.
[root@apache opt]# cd /etc/logstash/conf.d/
[root@apache conf.d]# vi apache_log.conf
input {
file{
path => "/etc/httpd/logs/access_log"
type => "access"
start_position => "beginning"
}
file{
path => "/etc/httpd/logs/error_log"
type => "error"
start_position => "beginning"
}
}
output {
if [type] == "access" {
elasticsearch {
hosts => ["192.168.233.129:9200"]
index => "apache_access-%{+YYYY.MM.dd}"
}
}
if [type] == "error" {
elasticsearch {
hosts => ["192.168.233.129:9200"]
index => "apache_error-%{+YYYY.MM.dd}"
}
}
}
[root@apache conf.d]# /usr/share/logstash/bin/logstash -f apache_log.conf '//指定配置文件做测试'
先访问Apache:192.168.73.202
在访问192.168.73.100