Storm 偽分散式環境搭建
前提:安裝ZooKeeper tar -zxvf apache-storm-1.0.3.tar.gz -C ~/training/ 設定環境變數:vi ~/.bash_profile STORM_HOME=/root/training/apache-storm-1.0.3 export STORM_HOME
PATH=$STORM_HOME/bin:$PATH export PATH 環境變數生效: source ~/.bash_profile 核心配置檔案:conf/storm.yaml 注意:- 後面有一個空格 : 後面有一個空格 1、偽分佈環境:一臺 bigdata11
18 storm.zookeeper.servers: 19 - "BigData11"
#主節點的地址 24 nimbus.seeds: ["BigData11"] #任務提交給nimbus後,將任務的jar檔案上傳到該目錄 #該目錄是儲存客戶端提交的jar檔案(任務) storm.local.dir: "/root/training/apache-storm-1.0.3/tmp" (首先建立一個tmp資料夾)
#每個從節點上,worker的個數 28 supervisor.slots.ports: 29 - 6700 30 - 6701 31 - 6702 32 - 6703 啟動: 主節點 storm nimbus & 從節點 storm supervisor & UI網頁 storm ui & 地址: http://ip:8080