Elasticsearch + Logstash + Kibana 【ELK】搭建教程

安装配置JDK环境

JDK安装(不能安装JRE)

JDK下载地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html

下载包:jdk-8u131-linux-x64.rpm

yum localinstall jdk-8u131-linux-x64.rpm

mvn 安装

cd /usr/local

wgethttp://www-eu.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz

tar xzf apache-maven-3.3.9-bin.tar.gz

mv apache-maven-3.3.9 maven

vi /etc/profile.d/maven.sh

export M2_HOME=/usr/local/maven

export PATH=${M2_HOME}/bin:${PATH}

source /etc/profile.d/maven.sh

mvn -version

安装ElasticSearch

yum install epel-release

yum install npm nodejs

# centos7 若安装nodejs失败,请执行如下命令再重试

rpm -ivhhttps://kojipkgs.fedoraproject.org//packages/http-parser/2.7.1/3.el7/x86_64/http-parser-2.7.1-3.el7.x86_64.rpm

wgethttps://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.3.rpm

yum localinstall elasticsearch-6.2.3.rpm

# 修改network.host: 0.0.0.0

vim /etc/elasticsearch/elasticsearch.yml

systemctl start elasticsearch

systemctl enable elasticsearch

systemctl status elasticsearch

# elasticsearch工具目录

/usr/share/elasticsearch/bin/

# 系统要求

vim /etc/security/limits.conf

* soft nofile 65535

* hard nofile 65535

vim /etc/sysctl.conf

vm.max_map_count=262144

# 临时生效命令

sysctl -w vm.max_map_count=262144

安装elasticsearch-head

# 增加新的参数,这样head插件可以访问es

vim /etc/elasticsearch/elasticsearch.yml

http.cors.enabled: true

http.cors.allow-origin: "*"

cd /usr/share/elasticsearch

git clonegit://github.com/mobz/elasticsearch-head.git

cd elasticsearch-head

npm install

npm run start

# elasticsearch-head访问地址

http://localhost:9100/

# 若head插件无法连接到es,编辑app.js查找9200修改参数localhost为本机ip

vim _site/app.js

安装filebeat

wgethttps://artifacts.elastic.co/downloads/beats/filebeat/filebeat-6.2.3-x86_64.rpm

yum localinstall filebeat-6.2.3-x86_64.rpm

vim /etc/filebeat/filebeat.yml

# 修改paths配置路径

# 将enabled设置为true!!

# 将Filebeat和Logstash连接起来

# 将output.elasticsearch注释掉#

# 打开Logstash的注释

# 修改完成后的配置如下:

grep -vE "^$|#|;" /etc/filebeat/filebeat.yml

filebeat.prospectors:

- type: log

  enabled: true

  paths:

    - /var/log/*.log

  exclude_lines: ['^DBG', '^OK','^$'] #排查DBG、OK和空行

  include_lines: ['^ERR', '^WARN']

  exclude_files: ['.gz$', '*error.log']

filebeat.config.modules:

  path: ${path.config}/modules.d/*.yml

  reload.enabled: false

setup.template.settings:

  index.number_of_shards: 3

setup.kibana:

output.logstash:

  hosts: ["localhost:5044"]

# 启动filebeat  

systemctl start filebeat

systemctl enable filebeat

systemctl status filebeat

安装logstash

wgethttps://artifacts.elastic.co/downloads/logstash/logstash-6.2.3.rpm

yum localinstall logstash-6.2.3.rpm

vim /etc/logstash/logstash.yml

# 修改path.config配置

path.config: /etc/logstash/conf.d

vim /etc/logstash/conf.d/logstash.conf

input {

    beats {

        port => 5044

    }

}

filter {

    grok {

        match => {

            "request" => "\s+(?<api_path>.+?)(\?.*)?\s+"

        }

    }

    grok {

        match => {

            "agent" => "(?<browser>Maxthon|QQBrowser|Chrome|Safari|Firefox|Opera|MSIE?)(/[0-9.]+)?"

        }

    }

    grok {

        match => {

            "agent" => "(?<os>Android|SymbianOS|Macintosh|iPad|iPhone|iPod|Linux|Windows?)"

        }

    }

    mutate {

        split => [ "upstreamtime", "," ]

    }

}

output {

    elasticsearch {

        hosts => ["192.168.1.216:9200"]

        index => "logstash-%{+YYYY.MM.dd}_log"

    }

    stdout { codec => rubydebug }

}

# 给logstash做软连接

ln -s /usr/share/logstash/bin/logstash /usr/bin/logstash

systemctl start logstash

systemctl enable logstash

systemctl status logstash

cd /usr/share/logstash/bin

# 解析配置文件并报告任何出现错误的错误

logstash -f logstash.conf --config.test_and_exit

# 窗口启动 (以下启动方式不推荐,服务启动即可)

logstash -f /etc/logstash/conf.d/logstash.conf

# 后台运行

nohup logstash -f /etc/logstash/conf.d &

nohup logstash -f /etc/logstash/conf.d > logstash.log 2>&1 &

安装kibana

wgethttps://artifacts.elastic.co/downloads/kibana/kibana-6.2.3-x86_64.rpm

yum localinstall kibana-6.2.3-x86_64.rpm

vim /etc/kibana/kibana.yml

# 修改elasticsearch.url参数

server.host: "0.0.0.0"

elasticsearch.url: "http://localhost:9200"

systemctl start kibana

systemctl enable kibana

systemctl status kibana

安装nginx

yum install nginx httpd-tools

htpasswd -c /etc/nginx/htpasswd.users XXX

vi /etc/nginx/conf.d/kibana.conf

server {

    listen 80;

    server_name 192.168.1.216;

    auth_basic "Restricted Access";

    auth_basic_user_file /etc/nginx/htpasswd.users;

    location / {

proxy_passhttp://localhost:5601;

        proxy_http_version 1.1;

        proxy_set_header Upgrade $http_upgrade;

        proxy_set_header Connection 'upgrade';

        proxy_set_header Host $host;

        proxy_cache_bypass $http_upgrade;

    }

}

systemctl enable nginx

systemctl start nginx

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,214评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,307评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,543评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,221评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,224评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,007评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,313评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,956评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,441评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,925评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,018评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,685评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,234评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,240评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,464评论 1 261
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,467评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,762评论 2 345