You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ca...@apache.org on 2022/01/12 12:42:29 UTC

[dolphinscheduler] branch dev updated: [Fix-7885][Deploy] Output log should under logs/ directory (#7960)

This is an automated email from the ASF dual-hosted git repository.

caishunfeng pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 2cf609a  [Fix-7885][Deploy] Output log should under logs/ directory (#7960)
2cf609a is described below

commit 2cf609ae6189fb334d43cefe47ad61a37ebd9f8c
Author: xiangzihao <46...@qq.com>
AuthorDate: Wed Jan 12 20:42:05 2022 +0800

    [Fix-7885][Deploy] Output log should under logs/ directory (#7960)
    
    * fix bug_7885
    
    * fix bug_7885
    
    * fix bug_7885
    
    * fix bug_7885
---
 script/dolphinscheduler-daemon.sh | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/script/dolphinscheduler-daemon.sh b/script/dolphinscheduler-daemon.sh
index ddfdbe6..a06d800 100755
--- a/script/dolphinscheduler-daemon.sh
+++ b/script/dolphinscheduler-daemon.sh
@@ -47,23 +47,22 @@ if [ ! -d "$DOLPHINSCHEDULER_LOG_DIR" ]; then
   mkdir $DOLPHINSCHEDULER_LOG_DIR
 fi
 
-log=$DOLPHINSCHEDULER_HOME/$command-$HOSTNAME.out
 pid=$DOLPHINSCHEDULER_HOME/$command/pid
 
 cd $DOLPHINSCHEDULER_HOME/$command
 
 if [ "$command" = "api-server" ]; then
-  :
+  log=$DOLPHINSCHEDULER_HOME/api-server/logs/$command-$HOSTNAME.out
 elif [ "$command" = "master-server" ]; then
-  :
+  log=$DOLPHINSCHEDULER_HOME/master-server/logs/$command-$HOSTNAME.out
 elif [ "$command" = "worker-server" ]; then
-  :
+  log=$DOLPHINSCHEDULER_HOME/worker-server/logs/$command-$HOSTNAME.out
 elif [ "$command" = "alert-server" ]; then
-  :
+  log=$DOLPHINSCHEDULER_HOME/alert-server/logs/$command-$HOSTNAME.out
 elif [ "$command" = "standalone-server" ]; then
-  :
+  log=$DOLPHINSCHEDULER_HOME/standalone-server/logs/$command-$HOSTNAME.out
 elif [ "$command" = "python-gateway-server" ]; then
-  :
+  log=$DOLPHINSCHEDULER_HOME/python-gateway-server/logs/$command-$HOSTNAME.out
 else
   echo "Error: No command named '$command' was found."
   exit 1