千家信息网

Storm日常操作命令

发表于:2025-01-23 作者:千家信息网编辑
千家信息网最后更新 2025年01月23日,1.启动storm的各个进程:nohup storm nimbus &nohup storm supervisor &nohup storm ui &2.启动storm的topology:storm
千家信息网最后更新 2025年01月23日Storm日常操作命令

1.启动storm的各个进程:

nohup storm nimbus &
nohup storm supervisor &
nohup storm ui &

2.启动storm的topology:
storm jar stormtopology10.jar com.hc360.storm.BusinessTopology businessTopology 1;
3.杀掉storm进程:

storm的进程可以通过jps列出所有进程,直接kill掉进程

杀掉topology:

storm kill businessTopology;
4.重启supervisor时需要执行下面清楚操作
rm -rf /state/partition1

0