ubuntu上安装flume

下载解压

wget http://mirrors.cnnic.cn/apache/flume/1.5.2/apache-flume-1.5.2-bin.tar.gz
tar -zxf apache-flume-1.5.2-bin.tar.gz
mv apache-flume-1.5.2-bin flume-1.5.2

设置环境变量

vim ~/.bashrc 
export FLUME_HOME=/home/flume-1.5.2
export PATH=$PATH:$FLUME_HOME/bin
source ~/.bashrc 

设置配置文件

cd flume-1.5.2/conf/
cp flume-env.sh.template flume-env.sh
vim flume-env.sh
JAVA_HOME=/usr/java/jdk1.7.0_72
JAVA_OPTS="-Xms100m -Xmx200m -Dcom.sun.management.jmxremote"

安装完毕!

example.conf

# example.conf: A single-node Flume configuration
# Name the components on this agent
a1.sources = r1
a1.sinks = k1
a1.channels = c1

# Describe/configure the source
a1.sources.r1.type = netcat
a1.sources.r1.bind = localhost
a1.sources.r1.port = 44444

# Describe the sink
a1.sinks.k1.type = logger

# Use a channel which buffers events in memory
a1.channels.c1.type = memory
a1.channels.c1.capacity = 1000
a1.channels.c1.transactionCapacity = 100

# Bind the source and sink to the channel
a1.sources.r1.channels = c1
a1.sinks.k1.channel = c1

监听

bin/flume-ng agent --conf conf --conf-file conf/example.conf --name a1 -Dflume.root.logger=INFO,console

输入

telnet localhost 44444

参考

    原文作者:codecraft
    原文地址: https://segmentfault.com/a/1190000004407244
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞