確保你已經按照了jdk-1.8+
解壓安裝包、移動到你想要的位置、修改名稱等:
配置檔案、指定jdk的安裝路徑::
配置環境變數:
vim ~/.bashrc
# flume
export flume_home=/home/hadoop/flume-1.9.0
export path=$path:flume_home/bin
source ~/.bashrc
檢視flume版本:
官網手冊:
使用flume 最主要的操作就是配置配置檔案,如在conf/ 下建立example.conf 檔案,新增如下內容:
簡單描述:
a1 是啟動名命令指定的agent 名稱
r1 是source名稱
k1是sink名稱
c1是channel名稱
使用netcat 模式讀取資料,指定主機和埠
設定channel資料儲存在記憶體
設定source 和 sink的channel指向。
conf/example.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 = master
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
# bind the source and sink to the channel
a1.sources.r1.channels = c1
a1.sinks.k1.channel = c1
啟動命令:a1 對應配置檔案中的a1、–conf是flume配置檔案、–conf-file是使用者配置檔案、-dflume.root.logger顯示到控制台。
另乙個終端啟動telnet:
測試資料:
Plone 第一次安裝
img 第一次嘗試安裝 url 完全超乎我的想像.太有親和力了.idea 安裝 url windows installer url 完全不須安裝什麼 python,apache,mysql.安裝結束後只要執行 plone controller 即可啟動 plone,用瀏覽器瀏覽.而且檔案只有 31 ...
docker第一次安裝
第一次安裝的時候 執行了sudo yum update 然後就跟著執行 sudo yum install docker 安裝完成後出現了 嘗試了rm rf var lib docker 新增如下內容 vim etc docker daemon.json 然後還是不行 又嘗試了 修改docker配置檔...
tomcat的第一次安裝
雖然上大學的時候學過tomcat,但是種種原因就 即沒裝也沒寫過 了 這次做畢設 一定要安裝了。然後把tomcat資料夾放進library裡 開啟終端 cd library tomcat bin sudo sh startup.sh 關閉tomcat sudo sh shutdown.sh 但是開啟...