AWS/정리
[AWS] 환경 변수 설정
사전 조건 1. RDS 인스턴스가 있어야 함 : https://radpro.tistory.com/325 2. EC2 인스턴스가 있어야 함 : https://radpro.tistory.com/323 3. EC2 인스턴스 안에 AWS CLI가 설치되어 있어야 함 : https://radpro.tistory.com/357에서 AWS CLI 검색 4. S3 버킷이 있어야 함 : https://radpro.tistory.com/324
![[AWS] CodePipeline 세팅 및 정리](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fc95tl5%2FbtrOncc6u5j%2F25EGrn2KDFdA2oQIyCKFn1%2Fimg.png)
[AWS] CodePipeline 세팅 및 정리
메인화면 AWS를 이용한 서버 배포 자동화 (CodePipeline) : SpringBoot프로젝트 생성 > 로컬 환경 설정 > EC2 환경 설정 > EC2 인스턴스 퍼블릿 IPv4 DNS로 Postman 요청확인 1. 스프링부트 프로젝트 생성 및 깃 레포지토리에 연결 2. 로컬(IntelliJ프로젝트)에 다음 설치 // 자바 설치 $ sudo apt update $ sudo apt install openjdk-11-jre-headless // AWS CLI 설치 (순차적으로 입력) $ curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" $ sudo apt install unzip $ unzip awscliv2..