首页 > 代码库 > storm 相关命令

storm 相关命令

1.启动nimbus

nohup ./storm nimbus &

2.启动supervisor

nohup ./storm supervisor &

3.启动ui

nohup ./storm ui &

4.启动log

nohup ./storm log &

5.上传topo

storm/storm-0.9.0.1/bin/storm jar storm_topo.jar com.cjun.MainTopology myTopo

storm_topo.jar:项目的jar包

com.cjun.MainTopology:主类的路径

myTopo:此topo在storm ui中显示的名称



storm 相关命令