美文网首页
CentOS7.6-ELK搭建(四)

CentOS7.6-ELK搭建(四)

作者: 张舵主 | 来源:发表于2020-06-07 17:05 被阅读0次

安装Logstash

  1. 将在官网下载的rpm包上传到系统中,然后登录执行yum localinstall -y logstash-7.7.0.rpm
  2. 执行如下命令测试logstash能正常工作
    /usr/share/logstash/bin/logstash -e 'input{ stdin{} } output{ stdout{codec => rubydebug }}'
    此命令用于测试使用了logstash的input插件、output插件,没有使用filter插件stdin是标准输入,stdout是标准输出。
  3. 启动正常能看到类似如下信息输出
    agent - Successfully started Logstash API endpoint {:port=>9600}
  4. 在此环境中输入hello world 输出效果如下


    image.png
  5. 按ctrl+c退出。

相关文章

网友评论

      本文标题:CentOS7.6-ELK搭建(四)

      本文链接:https://www.haomeiwen.com/subject/ftwctktx.html