shells/hiveserver2.sh


 

 1 #!/bin/bash
 2 function hiveserver2_stop(){
 3   pid=$(ps ax | grep "hiveserver2")
 4   kill $pid || echo "hiveserver2服务已关闭"
 5 }
 6 case $1 in
 7 "start"){
 8   echo "________________hiveServer2 服务 开启_______________________"
 9  /opt/module/hive/bin/hiveserver2
10 };;
11 "stop"){
12   hiveserver2_stop
13 };;
14 esac

 

原创文章,作者:kirin,如若转载,请注明出处:https://blog.ytso.com/244991.html

(0)
上一篇 2022年4月18日
下一篇 2022年4月18日

相关推荐

发表回复

登录后才能评论