status-all.sh 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #!/bin/bash
  2. #
  3. # Licensed to the Apache Software Foundation (ASF) under one or more
  4. # contributor license agreements. See the NOTICE file distributed with
  5. # this work for additional information regarding copyright ownership.
  6. # The ASF licenses this file to You under the Apache License, Version 2.0
  7. # (the "License"); you may not use this file except in compliance with
  8. # the License. You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. #
  18. workDir=`dirname $0`
  19. workDir=`cd ${workDir};pwd`
  20. source ${workDir}/env/install_env.sh
  21. # install_env.sh info
  22. echo -e '\n'
  23. echo "====================== dolphinscheduler server config ============================="
  24. echo -e "1.dolphinscheduler server node config hosts:[ \033[1;32m ${ips} \033[0m ]"
  25. echo -e "2.master server node config hosts:[ \033[1;32m ${masters} \033[0m ]"
  26. echo -e "3.worker server node config hosts:[ \033[1;32m ${workers} \033[0m ]"
  27. echo -e "4.alert server node config hosts:[ \033[1;32m ${alertServer} \033[0m ]"
  28. echo -e "5.api server node config hosts:[ \033[1;32m ${apiServers} \033[0m ]"
  29. # all server check state
  30. echo -e '\n'
  31. echo "====================== dolphinscheduler server status ============================="
  32. firstColumn="node server state"
  33. echo $firstColumn
  34. echo -e '\n'
  35. workersGroup=(${workers//,/ })
  36. for workerGroup in ${workersGroup[@]}
  37. do
  38. worker=`echo $workerGroup|awk -F':' '{print $1}'`
  39. workerNames+=($worker)
  40. done
  41. StateRunning="Running"
  42. # 1.master server check state
  43. mastersHost=(${masters//,/ })
  44. for master in ${mastersHost[@]}
  45. do
  46. masterState=`ssh -o StrictHostKeyChecking=no -p $sshPort $master "cd $installPath/; bash bin/dolphinscheduler-daemon.sh status master-server;"`
  47. echo "$master $masterState"
  48. done
  49. # 2.worker server check state
  50. for worker in ${workerNames[@]}
  51. do
  52. workerState=`ssh -o StrictHostKeyChecking=no -p $sshPort $worker "cd $installPath/; bash bin/dolphinscheduler-daemon.sh status worker-server;"`
  53. echo "$worker $workerState"
  54. done
  55. # 3.alter server check state
  56. alertState=`ssh -o StrictHostKeyChecking=no -p $sshPort $alertServer "cd $installPath/; bash bin/dolphinscheduler-daemon.sh status alert-server;"`
  57. echo "$alertServer $alertState"
  58. # 4.api server check state
  59. apiServersHost=(${apiServers//,/ })
  60. for apiServer in ${apiServersHost[@]}
  61. do
  62. apiState=`ssh -o StrictHostKeyChecking=no -p $sshPort $apiServer "cd $installPath/; bash bin/dolphinscheduler-daemon.sh status api-server;"`
  63. echo "$apiServer $apiState"
  64. done