Back to Browse

Lab 1 | Google Cloud Platform Tutorial for Beginners | Create Compute Engine Virtual Machine

1.8K views
Premiered Jun 20, 2021
12:05

Google Cloud Platform, offered by Google, is a suite of cloud computing services. The Google Cloud Console provides a web-based, graphical user interface that you can use to manage your Google Cloud projects and resources. In this series, practice labs & learn GCP components. Google Compute Engine (GCE) is an Infrastructure as a Service (IaaS) offering that allows clients to run workloads on Google's physical hardware. Learn how to create virtual machine using GCP Console & gcloud command line. Google Cloud console - https://console.cloud.google.com gcloud compute zones list | grep us-central1 gcloud config set compute/zone us-central1-b gcloud compute instances create "my-vm-2" \ --machine-type "n1-standard-1" \ --image-project "debian-cloud" \ --image-family "debian-10" \ --subnet "default" ping my-vm-1.us-central1-a ssh my-vm-1.us-central1-a sudo apt-get install nginx-light -y sudo nano /var/www/html/index.nginx-debian.html curl http://localhost/ curl http://my-vm-1.us-central1-a/ You can subscribe my channel for more educational videos on Cloud & related topics.

Download

0 formats

No download links available.

Lab 1 | Google Cloud Platform Tutorial for Beginners | Create Compute Engine Virtual Machine | NatokHD