ELK 平台搭建

安装 Elasticsearch

     1. 下载解压后配置config/elasticsearch.yml

     2. 下载head kopf ik等插件(注:ik 插件在2.3.x 以后直接在plugins里面直接解压就好,不需要配置。

    3. test:

http://localhost:9200/_analyze?analyzer=ik&pretty=true&text=%E6%88%91%E7%88%B1%E5%8C%97%E4%BA%AC%E5%A4%A9%E5%AE%89%E9%97%A8



ELK 平台搭建_第1张图片


安装 Logstash

新建config文件夹,编写输入输出

$ ./bin/logstash -f config/server.conf 运行文件输出

$ bin/logstash -e 'input{stdin{}}output{stdout{codec=>rubydebug}}' 直接调试

你可能感兴趣的:(ELK 平台搭建)