storm安裝及啟動

2022-10-11 07:06:07 字數 577 閱讀 4492

1、安裝乙個zookeeper集群

2、上傳storm的安裝包,解壓

3、修改配置檔案storm.yaml

#所使用的zookeeper集群主機

storm.zookeeper.servers:

- "weekend05"

- "weekend06"

- "weekend07"

#nimbus所在的主機名

nimbus.host: "weekend05"

supervisor.slots.ports

-6701

-6702

-6703

-6704

-6705

啟動storm

在nimbus主機上

nohup ./storm nimbus 1>/dev/null 2>&1 &

nohup ./storm ui 1>/dev/null 2>&1 &

在supervisor主機上

nohup ./storm supervisor 1>/dev/null 2>&1 &

storm的深入學習:

來自為知筆記(wiz)

Storm安裝,啟動

apache storm 0.9.6 conf目錄下 storm.yaml檔案 licensed to the apache software foundation asf under one or more contributor license agreements.see the notice...

storm啟動報錯

could not found expected in reader line 25,column 1 storm.zookeeper.port 2181 caused by while scanning a key in reader line 30,column 2 storm.local.di...

Storm啟動命令

在啟動storm之前要確保nimbus和supervisor上的zookeeper已經啟動 1 檢視zk的狀態 zkserver.sh status12 2 如果zk沒有開啟,將nimbus和supervisor的zk開啟 zkserver.sh start 1 3 啟動nimbus 切換到stor...