溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何安裝和測試Flume單機版

發(fā)布時間:2021-11-12 11:32:40 來源:億速云 閱讀:165 作者:小新 欄目:云計算

這篇文章給大家分享的是有關如何安裝和測試Flume單機版的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

#cd /usr/local/

#mkdir flume 

#cd flume

下載壓縮包

#wget http://archive.cloudera.com/cdh6/cdh/5/flume-ng-1.6.0-cdh6.7.1.tar.gz

解壓

#tar zxvf  flume-ng-1.6.0-cdh6.7.1.tar.gz

配置環(huán)境變量:

#vim /ect/profile

export FLUME_HOME=/home/hadoop/app/cdh/flume-1.6.0-cdh6.7.1

export PATH=$PATH:$FLUME_HOME/bin

版本驗證:

#flume-ng version

cd /usr/local/flume/example/

# cp /usr/local/flume/conf/flume-conf.properties.template /usr/local/flume/example/netcat.conf

// 配置netcat.conf用于實時獲取另一終端輸入的數(shù)據(jù)

# vim example/netcat.conf

# 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 that 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

// 運行FlumeAgent,監(jiān)聽本機的44444端口

flume-ng agent -c  /usr/local/flume/conf/ -f /usr/local/flume/example/netcat.conf -n a1 -Dflume.root.logger=INFO,console

如何安裝和測試Flume單機版

// 打開另一終端,通過telnet登錄localhost的44444,輸入測試數(shù)據(jù)

#telnet localhost 44444

如何安裝和測試Flume單機版

// 查看flume收集數(shù)據(jù)情況

如何安裝和測試Flume單機版

感謝各位的閱讀!關于“如何安裝和測試Flume單機版”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI