Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 그리디
- 5장
- Workbench
- 최단거리
- 코테
- 인스타
- c언어
- 백준
- #코린이 #코딩 #할 수 있다
- python기본
- 데베시 1주차
- 자료구조
- git오류
- 도커
- 코딩테스트
- 1주차(1)
- c언어 기본
- 4장
- 파이썬 알고리즘 인터뷰
- 스택
- git기초
- 참고X
- DP
- c언어 제어문
- Git
- python기초
- 인텔리제이
- 운체 1주차
- python자료형
- git 오류
Archives
- Today
- Total
하루살이 개발자
[AWS] 배포 본문
server:
port: 8081
spring:
datasource:
url: jdbc:mysql://{RDS 인스턴스 엔드포인트}:3306/fyp_db?serverTimezone=UTC&characterEncoding=UTF-8
username: {마스터 사용자 이름}
password: {마스터 사용자 암호}
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
# show_sql: true
format_sql: true
logging.level:
org.hibernate.SQL: debug
# org.hibernate.type: trace
// EC2 접근
ssh -i {.pem(Key파일) 경로} ubuntu@ec2-52-41-225-196.us-west-2.compute.amazonaws.com
// EC2에서 RDS 접근 확인
mysql -u admin -p -h {RDS 인스턴스 엔드포인트}
// 프로젝트 clone
git clone {clone할 프젝 주소}
// git pull
git pull
// 프로젝트 build 시작
./gradlew build
// jar 파일 경로 이동
cd /home/ec2-user/~/build/libs
// 프로젝트 실행
java -jar faceYourPace-0.0.1-SNAPSHOT.jar