码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS6.9安装Filebeat监控Nginx的访问日志发送到Kafka

时间:2018-02-10 14:58:28      阅读:858      评论:0      收藏:0      [点我收藏+]

标签:base   path   centos6   .gz   yum源   pre   ref   rest   yum安装   

一、下载地址:

官方:https://www.elastic.co/cn/downloads/beats/filebeat

百度云盘:https://pan.baidu.com/s/1dvhqb0

 

二、安装

tar zxvf filebeat-6.2.1-linux-x86_64.tar.gz
mv filebeat-6.2.1-linux-x86_64 filebeat

也可yum安装

下载和安装key文件

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

创建yum源文件

vi /etc/yum.repos.d/elastic.repo
[elastic-6.x]
name=Elastic repository for 6.x packages
baseurl=https://artifacts.elastic.co/packages/6.x/yum
gpgcheck=1
gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
enabled=1
autorefresh=1
type=rpm-md

开始安装

yum install filebeat

 

三、配置

vi kafka.yml
filebeat.prospectors:
- input_type: log
  paths:
    - /usr/local/openresty/nginx/logs/access.log
output.kafka:
  hosts: ["10.10.6.225:9092"]
  topic: test
  required_acks: 1

运行

./filebeat -e -c kafka.yml

 

CentOS6.9安装Filebeat监控Nginx的访问日志发送到Kafka

标签:base   path   centos6   .gz   yum源   pre   ref   rest   yum安装   

原文地址:https://www.cnblogs.com/kgdxpr/p/8438673.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!