클라우드(62)
-
08. Service Accounts and Roles: Fundamentals
Activate Cloud Shell gcloud auth listgcloud config list projectgcloud config set compute/region us-west2 Task 1. Create and manage service accounts gcloud iam service-accounts create my-sa-123 --display-name "my service account" gcloud projects add-iam-policy-binding $DEVSHELL_PROJECT_ID \ --member serviceAccount:my-sa-123@$DEVSHELL_PROJECT_ID.iam.gserviceaccount.com --role roles/edit..
2024.11.16 -
07. Cloud Shell and gcloud
Task 1. Configuring your environment Set the region to us-east1 gcloud config set compute/region us-east1리전을 us-east1로 설정 To view the project region setting, run the following command:설정한 리전을 보는 명령어gcloud config get-value compute/region Set the zone to us-east1-b:영역을 us-east1-b 로 설정 gcloud config set compute/zone us-east1-b To view the project zone setting, run the following command:설정한 영역을 보는 ..
2024.11.15 -
06. Cloud SQL for MySQL
Task 1. Create a Cloud SQL instance gcloud sql operations list --instance=myinstance작업상태 확인 Task 2. Connect to your instance using the mysql client in Cloud Shellgcloud sql connect myinstance --user=root Task 3. Create a database and upload data CREATE DATABASE guestbook; USE guestbook;CREATE TABLE entries (guestName VARCHAR(255), content VARCHAR(255), entryID INT NOT NULL AUTO_INCREMENT, P..
2024.11.14 -
05. Cloud IAM
Task 1. Explore the IAM console and project level roles 계정 1에는 소유자 권한 및 다양한 권한이 부여계정2에는 프로젝트를 볼 수만있는 뷰어 권한을 부여 Task 2. Prepare a Cloud Storage bucket for access testing 계정 1에서 진행버킷 생성하여 계정 2에서 보이는지 테스트할 예정테스트 파일 업로드이름은 sample.txt로 변경 사용자2 계정으로 로그인뷰어 권한이 있기 때문에 버킷이 보임 Task 3. Remove project access사용자2의 뷰어 권한 삭제 뷰어 권한이 삭제된 사용자2에서 다시 버킷을 확인하려고 하면 권한없음 오류가 뜸Task 4. Add Cloud Storage permissions사..
2024.11.13 -
04. VPC Networking Fundamentals
Task 1. Explore the default network View the subnets View the routes View the firewall rules Delete the default network 삭제된 것 확인 삭제 된 채로 인스턴스 생성 시도 Task 2. Create a VPC network and VM instancesCreate an auto mode VPC network with Firewall rules Create a VM instance in us-east1 Create a VM instance in us-central1 Task 3. Explore the connectivity for VM instances ping -c 3 Enter mynet-se..
2024.11.12 -
03. Cloud Storage
Task 1. Create a bucket콘솔 > Cloud Storage > Buckets 버킷 이름 설정 및 리전 선택 Task 2. Upload an object into the bucket Objects 탭에서 Upload files 클릭이미지 (kitten.png) 선택 Task 3. Share a bucket publicly이미지 공유하기 파일 목록에서 버킷 클릭 Permissions 탭 클릭 Add principals > New principals 클릭 Cloud Storage > Storage Object Viewer 선택새 구성원에 대한 역할 추가- All Users경고창이 뜸 그리고, Public access 가 Not public으로 되어있는데, 해제 해줘야 해당 버..
2024.11.11