diff --git a/script/start-all.sh b/script/start-all.sh index 7deb94f8fe..08574069aa 100755 --- a/script/start-all.sh +++ b/script/start-all.sh @@ -53,7 +53,7 @@ ssh -p $sshPort $alertServer "cd $installPath/; sh bin/dolphinscheduler-daemon. apiServersHost=(${apiServers//,/ }) for apiServer in ${apiServersHost[@]} do - echo "$apiServer worker server is starting" + echo "$apiServer api server is starting" ssh -p $sshPort $apiServer "cd $installPath/; sh bin/dolphinscheduler-daemon.sh start api-server;" done diff --git a/script/stop-all.sh b/script/stop-all.sh index 2630e23d99..1290f4acdd 100755 --- a/script/stop-all.sh +++ b/script/stop-all.sh @@ -52,6 +52,6 @@ ssh -p $sshPort $alertServer "cd $installPath/; sh bin/dolphinscheduler-daemon. apiServersHost=(${apiServers//,/ }) for apiServer in ${apiServersHost[@]} do - echo "$apiServer worker server is stopping" + echo "$apiServer api server is stopping" ssh -p $sshPort $apiServer "cd $installPath/; sh bin/dolphinscheduler-daemon.sh stop api-server;" done