设为首页 收藏本站
查看: 1609|回复: 0

[经验分享] ELK Stack最新版本测试一安装篇

[复制链接]

尚未签到

发表于 2019-1-28 11:52:25 | 显示全部楼层 |阅读模式
  咱们废话少说,直接切入正题
  先看版本
  filebeat1.0.0-rc2  logstash2.0.0-1  elasticsearch2.0.0  kibana4.2
  

  那么多内容可以简单归结如下:
  名词解释
  Elasticsearch              存储索引
  Kibana                       UI
  Kibana dashboard      可视化思维图
  Logstash Input Beats plugin     收集事件
  Elasticsearch output plugin       发送事务
  Filebeat                     日志数据托运人shipper
  Topbeat                    轻量级服务器监控
  Packetbeat                在线网络数据包分析
  架构

  一,客户端安装
  filebeat架构

  https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-getting-started.html#filebeat-installation
  nginx日志客户端安装filebeat
  安装filebeat
  curl  -L  -O https://download.elastic.co/beats/filebeat/filebeat-1.0.0-rc2-x86_64.rpm
  rpm-vi filebeat-1.0.0-rc2-x86_64.rpm
  配置filebeat
  /etc/filebeat/filebeat.yml
  

Filebeat configuration:
  filebeat:
  prospectors:
    -
      paths:
        - "/var/log/*.log"
      fields:
        type: syslog
output:
  elasticsearch:
    enabled: true
    hosts: ["http://localhost:5043"]

  

  启动filebeat
  

  [root@backup01 filebeat]# curl -XPUT 'http://192.168.0.58:9200/_template/filebeat?pretty' -d@/etc/filebeat/filebeat.template.json
{
  "acknowledged" : true
  }
  topbeat
  https://www.elastic.co/guide/en/beats/topbeat/current/topbeat-getting-started.html
  curl -L -O  https://download.elastic.co/beats/topbeat/topbeat-1.0.0-rc2-x86_64.rpm  
  rpm -vih topbeat-1.0.0-rc2-x86_64.rpm
  

  packetbeat
  https://www.elastic.co/guide/en/beats/packetbeat/current/packetbeat-getting-started.html
  yum install libpcap
  curl -L -O https://download.elastic.co/beats/packetbeat/packetbeat-1.0.0-rc2-x86_64.rpm
  rpm -vi packetbeat-1.0.0-rc2-x86_64.rpm
  

  二,服务器端安装
  安装elk
  https://www.elastic.co/guide/en/beats/libbeat/1.0.0-rc2/getting-started.html#logstash-setup
  既可以分析日志,又可以监控服务器状态,还可以分析http协议等网络数据包。
  elasticearch安装
  yum install java-1.7.0-openjdk
  curl -L -O https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-2.0.0.rpm
  rpm -ivh elasticsearch-2.0.0.rpm
  

  配置启动
  cat /etc/elasticsearch/elasticsearch.yml  |grep -Ev "^$|^#"
path.data: /data
path.logs: /data/elklogs
  network.host: 192.168.0.58
  chmod elasticsearch:elasticsearch /data/elasticsearch/ -R
  chmod elasticsearch:elasticsearch /data/elklogs/ -R
  service elasticsearch start
  

  

  测试elasticearch
  [root@localhost ~]# curl http://127.0.0.1:9200
{
  "name" : "Redwing",
  "cluster_name" : "elasticsearch",
  "version" : {
    "number" : "2.0.0",
    "build_hash" : "de54438d6af8f9340d50c5c786151783ce7d6be5",
    "build_timestamp" : "2015-10-22T08:09:48Z",
    "build_snapshot" : false,
    "lucene_version" : "5.2.1"
  },
  "tagline" : "You Know, for Search"
  }
  logstash安装(102.131)
  curl  -L  -O https://download.elastic.co/logstash/logstash/packages/centos/logstash-2.0.0-1.noarch.rpm
  rpm -ivh logstash-2.0.0-1.noarch.rpm
  

  

  logstash配置
  cat nginxconf.json
  input {
  beats {
    port => 5044
  }
}

output {
  elasticsearch {
    hosts => "192.168.0.58:9200"
    sniffing => true
    manage_template => false
    index => "%{[@metadata][beat]}-%{+YYYY.MM.dd}"
    document_type => "%{[@metadata][type]}"
  }
  }
  

  

  kibana安装
  

  curl  -L  -O https://download.elastic.co/kibana/kibana/kibana-4.2.0-linux-x64.tar.gz
  tar xzvf kibana-4.2.0-linux-x64.tar.gz
  cd kibana-4.2.0-linux-x64/
  ./bin/kibana
  

  先修改kibana.yml 可设置端口号,elaticsearch
  mv  kibana-4.2.0-linux-x64 /var/kibana
  nohup /var/kibana/bin/kibana -e  http://192.168.0.58:9200 &
  log   [13:14:14.588] [info][status][plugin:kibana] Status changed from uninitialized to green - Ready
  log   [13:14:14.617] [info][status][plugin:elasticsearch] Status changed from uninitialized to yellow - Waiting for Elasticsearch
  log   [13:14:14.630] [info][status][plugin:kbn_vislib_vis_types] Status changed from uninitialized to green - Ready
  log   [13:14:14.639] [info][status][plugin:markdown_vis] Status changed from uninitialized to green - Ready
  log   [13:14:14.646] [info][status][plugin:metric_vis] Status changed from uninitialized to green - Ready
  log   [13:14:14.655] [info][status][plugin:spyModes] Status changed from uninitialized to green - Ready
  log   [13:14:14.658] [info][status][plugin:statusPage] Status changed from uninitialized to green - Ready
  log   [13:14:14.661] [info][status][plugin:elasticsearch] Status changed from yellow to green - Kibana index ready
  log   [13:14:14.663] [info][status][plugin:table_vis] Status changed from uninitialized to green - Ready
  log   [13:14:14.675] [info][listening] Server running at http://0.0.0.0:5601
  

  kibana dashboard加载
  curl  -L  -O http://download.elastic.co/beats/dashboards/beats-dashboards-1.0.0-rc2.tar.gz
  tar xzvf beats-dashboards-1.0.0-rc2.tar.gz
  cd beats-dashboards-1.0.0-rc2/
  ./load.sh
  

  ./load.sh  http://192.168.0.58:9200
curl
Loading search Cache-transactions:
{"_index":".kibana","_type":"search","_id":"Cache-transactions","_version":1,"_shards":{"total":2,"successful":1,"failed":0},"created":true}
Loading search DB-transactions:
  {"_index":".kibana","_type":"search","_id":"DB-transactions","_version":1,"_shards":{"total":2,"successful":1,"failed":0},"created":true}
  

  最后测试索引的命令如下:
  curl 192.168.0.58:9200/_cat/indices
  yellow open .kibana             1 1   93 0  69kb  69kb
  yellow open filebeat-2015.11.18 5 1 4109 0 2.9mb 2.9mb
  详细配置可以参考配置篇
  http://jerrymin.blog.运维网.com/3002256/1720110
  





运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-668677-1-1.html 上篇帖子: ELK 通过地理位置显示访问来源 下篇帖子: 金庸武功之““兰花拂穴手””
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表