ELK stack 部署

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ELK stack 部署相关的知识,希望对你有一定的参考价值。

ELK 是 elasticsearch  logstash  kibana 的组合;

这里简单的说一下如何在centos6.x系统下安装,后续写如何使用这些软件;

 这里是根据官网推荐使用yum的方法安装的;


 1. elasticsearch

rpm --import https://packages.elastic.co/GPG-KEY-elasticsearc

   cat /etc/yum.repos.d/elsticsearch.repo

[elasticsearch-2.x]
name=Elasticsearch repository for 2.x packages
baseurl=http://packages.elastic.co/elasticsearch/2.x/centos
gpgcheck=1
gpgkey=http://packages.elastic.co/GPG-KEY-elasticsearch
enabled=1
yum install elasticsearch -y
#访问:  http://ip:9200

  安装各种插件

#安装 head
/usr/share/elasticsearch/bin/plugin install mobz/elasticsearch-head
#访问: 

#安装 kopf
/usr/share/elasticsearch/bin/plugin install lmenezes/elasticsearch-kopf
#访问:

#安装 bigdesk 
/usr/share/elasticsearch/bin/plugin install lukas-vlcek/bigdesk
#访问:http://ip:9200/_plugin/bigdesk

2. logstash

rpm --import https://packages.elastic.co/GPG-KEY-elasticsearc

cat /etc/yum.repos.d/logstash.repo

[logstash-2.2]
name=Logstash repository for 2.2.x packages
baseurl=http://packages.elastic.co/logstash/2.2/centos
gpgcheck=1
gpgkey=http://packages.elastic.co/GPG-KEY-elasticsearch
enabled=1
yum install logstash -y


3. kibana

rpm --import https://packages.elastic.co/GPG-KEY-elasticsearc

cat /etc/yum.repos.d/kibana.repo

[kibana-4.4]
name=Kibana repository for 4.4.x packages
baseurl=http://packages.elastic.co/kibana/4.4/centos
gpgcheck=1
gpgkey=http://packages.elastic.co/GPG-KEY-elasticsearch
enabled=1
yum install kibana -y
#访问
 http://ip:5601



本文出自 “浅浅的淡淡” 博客,请务必保留此出处http://cuixiang.blog.51cto.com/8204722/1744448

以上是关于ELK stack 部署的主要内容,如果未能解决你的问题,请参考以下文章

部署Kibana--Elastic Stack之五

集中式日志分析平台 Elastic Stack(介绍)

集中式日志分析平台 Elastic Stack(介绍)

ES 集中式日志分析平台 Elastic Stack(介绍)

1. ELK Stack 理论篇之什么是ELK Stack?

ELKStack部署和使用