shells
-
shells/hive.sh
1 #!/bin/bash 2 function hive_stop(){ 3 pid=$(ps ax | grep “hive”) 4 kill $pid || echo “…
-
shells/kafka.sh
1 #!/bin/sh 2 comm=/opt/module/kafka/bin/kafka-server-start.sh 3 commd=/opt/module/kaf…
-
shells/hiveserver2.sh
1 #!/bin/bash 2 function hiveserver2_stop(){ 3 pid=$(ps ax | grep “hiveserver2”) 4 kill …