Browse Source

fix bug_7629 (#7630)

3.0.0/version-upgrade
xiangzihao 3 years ago committed by GitHub
parent
commit
2d73083e87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      script/dolphinscheduler-daemon.sh

2
script/dolphinscheduler-daemon.sh

@ -98,7 +98,7 @@ case $startStop in
(status)
# more details about the status can be added later
serverCount=`ps -ef |grep "$CLASS" |grep -v "grep" |wc -l`
serverCount=`ps -ef | grep "$DOLPHINSCHEDULER_HOME" | grep "$CLASS" | grep -v "grep" | wc -l`
state="STOP"
# font color - red
state="[ \033[1;31m $state \033[0m ]"

Loading…
Cancel
Save