-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.sh
43 lines (34 loc) · 1.87 KB
/
deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# ====================== Header ======================
# fileName : deploy.sh
# author : 우태균
# date : 2022/08/08
# description : 배포 스크립트
# ====================================================
echo "> 현재 구동 중인 HeyLocal 애플리케이션 pid 확인" >> /home/ec2-user/app/log/heylocal/deploy.log
CURRENT_PID=$(pgrep -f '.jar$')
echo -e "> 현재 구동 중인 애플리케이션 pid\n$CURRENT_PID" >> /home/ec2-user/app/log/heylocal/deploy.log
if [ -z "$CURRENT_PID" ]; then
echo "> 현재 구동 중인 애플리케이션이 없으므로 종료하지 않습니다." >> /home/ec2-user/app/log/heylocal/deploy.log
else
echo -e "> kill -15 $CURRENT_PID" >> /home/ec2-user/app/log/heylocal/deploy.log
sudo kill -15 $CURRENT_PID
sleep 5
fi
# 테스트 서버이거나 경량 프로덕션인 경우, nginx 구동
if [ "$SPRING_PROFILES_ACTIVE" = "stage" ] || [ "$SPRING_PROFILES_ACTIVE" = "lite-production" ]; then
echo "> NGINX 프로세스 pid 확인" >> /home/ec2-user/app/log/heylocal/deploy.log
NGINX_PID=$(pgrep -f nginx)
if [ -z "$NGINX_PID" ]; then
echo "> 현재 NGINX가 실행 중이지 않습니다. 따라서, NGINX를 실행합니다." >> /home/ec2-user/app/log/heylocal/deploy.log
sudo service nginx start
else
echo "> 이미 NGINX가 실행 중입니다." >> /home/ec2-user/app/log/heylocal/deploy.log
fi
fi
echo "> 새 애플리케이션 배포" >> /home/ec2-user/app/log/heylocal/deploy.log
nohup java -jar \
-Dspring.config.location=/home/ec2-user/app/src/main/resources/ \
-Dspring.profiles.active="$SPRING_PROFILES_ACTIVE" \
/home/ec2-user/app/build/libs/heylocal-traveler-*-SNAPSHOT.jar \
>> /home/ec2-user/app/log/heylocal/application.log 2>&1 &
echo "> 서버 애플리케이션 로그 파일: /home/ec2-user/app/log/heylocal/application.log" >> /home/ec2-user/app/log/heylocal/deploy.log