From 828029bc6f52c7bb0577537d5a905af84eef8f1b Mon Sep 17 00:00:00 2001 From: KWY Date: Mon, 17 Jun 2024 01:13:07 +0900 Subject: [PATCH] =?UTF-8?q?#268=20[feat]=20dev=20=ED=99=98=EA=B2=BD=20?= =?UTF-8?q?=EB=B0=B0=ED=8F=AC=20=EB=B0=A9=EC=8B=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 현재 dev에서는 어떤 로깅도 하고 있지 않습니다 dev 환경에서 사용자의 입출력을 확인하기 위해서 script를 수정했습니다. --- scripts/run_new_was.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_new_was.sh b/scripts/run_new_was.sh index d8beb795..6d6e30e2 100644 --- a/scripts/run_new_was.sh +++ b/scripts/run_new_was.sh @@ -28,7 +28,7 @@ fi if [ "$DEPLOYMENT_GROUP_NAME" == "dev" ] then - nohup java -jar -Dserver.port=${TARGET_PORT} -Dspring.profiles.active=dev /home/ubuntu/operation/operation-api/build/libs/operation-api-0.0.1-SNAPSHOT.jar > /dev/null 2> /dev/null < /dev/null & + nohup java -jar -Dserver.port=${TARGET_PORT} -Dspring.profiles.active=dev /home/ubuntu/operation/operation-api/build/libs/operation-api-0.0.1-SNAPSHOT.jar > nohup.out 2>&1 Now new WAS runs at ${TARGET_PORT}." fi sleep 10