From f35f215fb26e8bc83334e900000ebfb649c5f7c6 Mon Sep 17 00:00:00 2001 From: Hxxjeong Date: Wed, 2 Oct 2024 14:54:28 +0900 Subject: [PATCH] =?UTF-8?q?[Docs]:=20UTC=EC=97=90=EC=84=9C=20Seoul=20?= =?UTF-8?q?=EC=8B=9C=EA=B0=84=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/start.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/start.sh b/scripts/start.sh index a6ddb12..c362236 100644 --- a/scripts/start.sh +++ b/scripts/start.sh @@ -11,14 +11,11 @@ START_LOG="$ROOT_PATH/start.log" NOW=$(date +%c) -echo "현재 사용자: $(whoami)" >> $START_LOG -echo "secretKey: $(secretKey)" >> $START_LOG - echo "[$NOW] $JAR 복사" >> $START_LOG cp $ROOT_PATH/build/libs/inconcert-0.0.1-SNAPSHOT.jar $JAR echo "[$NOW] > $JAR 실행" >> $START_LOG -nohup java -jar $JAR > $APP_LOG 2> $ERROR_LOG & +nohup java -Duser.timezone=Asia/Seoul -jar $JAR > $APP_LOG 2> $ERROR_LOG & SERVICE_PID=$(pgrep -f $JAR) echo "[$NOW] > 서비스 PID: $SERVICE_PID" >> $START_LOG