Is there a clean way to stop storm without killing it with \"kill XXX\" where XXX is the PID?
I run \"storm kill topology-name\" to kill the topology, but after that, is
Well if you have started storm as ./storm nimbus & ./storm supervisor & ./storm ui then
after that you may forgot the process id's in that case you can use jps tool to find out pid's then kill them as
$JAVA_HOME/bin/jps
3201 ConsoleConsumer
7528 Jps
2966 Kafka
3680 nimbus
3681 supervisor
6749 Launcher
2669 QuorumPeerMain
killing nimbus first
$ sudo kill 3681
$ sudo kill 3680