본문 바로가기
반응형

Development/Cloud26

[Azure] Storage 생성 및 권한 연결 이번에  Azure 의 Storage 를 연결해볼 일이 있어서 실제 생성하고 권한 연결했던 내용들을 정리해 보고자 한다. 도큐먼트가 잘 되어있긴 하지만 GCP나 AWS 에서 사용하던 절차와 달라서(특히 용어가..) 많이 헷갈렸다. 최종 목표는 파이썬 코드로 Azure 에 파일을 업로드 하고 다운로드, 목록 을 가져오는 코드를 만들기 위함이다. 1. 스토리지 계정 생성Azure 에서 우선 스토리지 계정을 생성을 해야 한다. GCP 나 AWS 에서는 바로  Storage 를 생성했던것 같은데 이부분에서 좀 차이가 있었다. 계정 생성시 기억해야 할 항목은 리소스 그룹 이름이다. 마지막에 역할 할당시 다시 나온다. 기본 정보들만 입력을 하고 검토+만들기 버튼을 클릭한다. 검토가 끝나면 만들기 버튼이 나오는데 그.. 2024. 7. 12.
네트워크 관련 내용들 개요네트워크IPV4첫번째 옥텟의 앞자리 숫자를 가지고 구분호스트 비트 수는 1개의 네트워크 안에 있는 IP 수를 의미한다.A Class맨 첫번째 앞자리 비트가 0네트워크 비트 2^7호스트비트 2^24B Class맨 첫번째 앞자리 비트가 10네트워크 비트 2^14호스트 비트 2^16C Class맨 첫번째 앞자리 비트가 110네트워크 비트 2^21호스트 비트 2^8Route Table트래픽이 어디로 가야 할지 알려주는 테이블구성IGW - Router - Route Table - NACL - VPC SubnetNACLNACL - statelessSecurity Group - stateful 2023. 1. 13.
LinuxAcademy 오답노트 ## You are developing a new application that needs to store and analyze over a petabyte of data in NoSQL format. The database needs to offer low latency and millisecond response time. Which product would you choose? Cloud Bigtable - Although both Datastore and Bigtable are NoSQL databases, Bigtable is able to support over a petabyte of data and is useful for high-speed analytics as well, whereas.. 2020. 4. 6.
[Udemy] Cloud Architect Practice Questioins v2 오답노트 https://www.udemy.com/course/google-cloud-platform-cloud-architect-practice-questions-v2-c/learn/quiz/4398518/result/276974380#overview # Udemy 오답 및 참고 사항 - What is the best use case for Direct Peering Customer wants to exchange only GCP data not google other data. - Company Moving into Google Cloud Platform needs to migrate relational database to google cloud, What option do they have as manage.. 2020. 4. 3.
[Qwiklabs]Migrate a MySQL Database to Google Cloud SQL Tasks Check that there is a Cloud SQL instance Check that there is a user database on the Cloud SQL instance Check that the blog instance is authorized to access Cloud SQL Check that wp-config.php points to the Cloud SQL instance Check that the blog still responds to requests 1. Create Cloud SQL 2. MySql dump 를 export 한다. 참고 ) https://cloud.google.com/solutions/migrating-mysql-to-cloudsql-concep.. 2020. 3. 26.
[Qwiklabs]Scale Out and Update a Containerized Application on a Kubernetes Cluster Tasks Check that there is a tagged image in gcr.io for echo-app:v2 Echo-app:v2 is running on the Kubernetes cluster The Kubernetes cluster deployment reports 2 replicas. The application must respond to web requests with V2.0.0 1. 파일 압축 풀기 및 Docker Build - 압축 풀기 tar -xvzf resources-ehco-web-v2.tar.gz - PROJECT_ID 환경변수 등록 export PROJECT_ID=$(gcloud info --format='value(config.project)') - Image 를 .. 2020. 3. 26.
[Qwiklabs]Build and Deploy a Docker Image to a Kubernetes Cluster Tasks An application image with a v1 tag has been pushed to the gcr.io repository A new Kubernetes cluster exists (zone: us-central1-a) Check that an application has been deployed to the cluster Test that a service exists that responds to requests like Echo-app 1. 클러스터 생성 gcloud beta container --project "qwiklabs-gcp-00-337f72711928" clusters create "echo-cluster" --zone "us-central1-a" --no-ena.. 2020. 3. 26.
[GCP] Cloud Shell 에서 Instance 접근 방법 GCP VM Instance 화면에서 ssh 버튼을 통하지 않고 Cloud Shell 에서 직접 SSH 를 접근 할 경우 쓰는 방법이다. gcloud compute ssh --project [PROJECT_ID] --zone [ZONE] [INSTANCE_NAME] cloud Shell 에 접근한후 다음과 같이 하면 된다. 먼저 instance list 를 조회한다. gcloud compute instances list NAME ZONE MACHINE_TYPE PREEMPTIBLE INTERNAL_IP EXTERNAL_IP STATUS myinstance us-central1-a n1-standard-1 10.128.0.2 146.148.43.62 RUNNING 그리고 위에 명령어처럼 아래와 같이 접근을.. 2020. 3. 16.
[Qwiklabs]Configure Secure RDP using a Windows Bastion Host Tasks A new non-default VPC has been created The new VPC contains a new non-default subnet within it A firewall rule exists that allows TCP port 3389 traffic ( for RDP ) A Windows compute instance called vm-bastionhost exists that has a public ip-address to which the TCP port 3389 firewall rule applies. A Windows compute instance called vm-securehost exists that does not have a public ip-address.. 2020. 3. 15.
[Qwiklabs] Configure a Firewall and a Startup Script with Deployment Manager Qwiklab 에 있는 코스중 하나인 Challenge: GCP Architecture 중 Configure a Firewall and a Startup Script with Deployment Manager 를 진행했다. 그렇게 어렵지 않았는데 결과적으로 채점시스템의 오류로 인해서 거의 3시간의 시간을 투자했다. 처음에 하다가 오류를 못찾아서 타임오버나고, 두번째에도 동일한 곳에서 진행이 안되서 끙끙대다가 서비스데스크에 문의한 결과 채점시스템의 오류였다. (내시간... ㅠㅠ) Task 목록은 아래와 같다. A new Deployment Manager deployment has been created The deployment includes a virtual machine that has an embe.. 2020. 3. 6.
GCP Cloud Architect Practice Exam 오답 확인 GCP Practice Exam 에서 풀고나서 오답에 대한 내용 체크한거. (https://cloud.google.com/certification/practice-exam/cloud-architect?hl=ko) 코로나때문에 시험을 미룬게 잘된건지 아닌지 모르겠다..ㅠㅠ TerramEarth case study Q. Because you do not know every possible future use for the data TerramEarth collects, you have decided to build a system that captures and stores all raw data in case you need it later. How can you most cost-effectively a.. 2020. 2. 28.
[GCP]App Engine App Engine 은 2가지 타입이 존재한다. 1. Standard * Easily deploy your application * Autoscale workloads * Free daily quota * Usage based pricing 2. Flexible * Web , Mobile application, continer based. Flexible vs Standard Standard Flexible Instance startup Milliseconds Minutes SSH access No Yes Write to local disk No Yes Support for 3rd-party binaries No Yes Network access Via App Engine service Yes Prici.. 2020. 2. 13.
728x90
반응형