본문 바로가기

Back-End

(4)
[AWS] Amazon Linux 2 Stress를 이용한 Auto Scaling 테스트 방법 CPU 로드 증가시 Auto Scaling 테스트를 위해서 EC2 instance 에 CPU 부하 테스트 및 확인 방법입니다. 1. stress utility on Amazon Linux 2 패키지 설치 https://gist.github.com/mikepfeiffer/d27f5c478bef92e8aff4241154b77e54 Install Stress Utility on Amazon Linux 2 Install Stress Utility on Amazon Linux 2. GitHub Gist: instantly share code, notes, and snippets. gist.github.com sudo amazon-linux-extras install epel -y sudo yum install s..
[AWS] High Availability and Scalability for EC2 정리 Vertical Scailng : Increase instance size (= scale up / down) - From: t2.nano (- ECU, 1 vCPUs, 2.4 GHz, -, 0.5 GiB 메모리, EBS 전용) - To: u-6tb1.112xlarge (- ECU, 448 vCPUs, 2.1 GHz, -, 6144 GiB 메모리, EBS 전용) Horizontal Scaling : Increases number of instances (= scale out / in) - Auto Scaling Group - Load Balncer High Availibility : Run instances for the same application across multi AZ - Auto Scalin..
[AWS] AWS 자격증 영어 시험 추가 시간 배정 방법 AWS 자격증 영어 시험 응시할때 추가 시간 배정을 위해서 반드시 해야하는 가이드 입니다. 본인의 영어실력이 원어민 수준이시면 바로 시험 등록하시면됩니다. 1. https://www.certmetrics.com/amazon/default.aspx - AWS training and certification 사이트 접속 - Upcoming Exams -> Request Exam Accommodations 클릭 AWS training and certification www.aws.training:443 2. Request Accommodation 클릭 3. Accommodation Type : ESL(English as a Second Language) + 30 MINUTES 선택 후 Create 클릭 4. ..
[Firebase] Firebase Storage 교차 출처 리소스 공유(CORS) 구성 방법 문제 상황 Firebase Storage에 저장된 이미지 파일읽어 들이는 Image.network 사용하여 web hosting 서버로 deploy 한 후에 Chrome에서 확인 해보았지만 이미지가 보이지 않고 아래와 같은 에러가 발생한것을 확인 할수있다. Access to XMLHttpRequest at '...' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. CORS policy로 인해서 접근이 block이 되었으며 가 무었이냐하면 아래와 같다. CORS(Cross-Origin Resource Sharing) - CORS 는 브라우저가 한 사이트가 다..