Network Load Balancer einrichten Rezensionen

517524 Rezensionen

Kasak M. · Vor 11 Tage überprüft

nice and easy yo learn and do

Yash K. · Vor 11 Tage überprüft

Naman G. · Vor 11 Tage überprüft

Chandan T. · Vor 11 Tage überprüft

ok

Antonio R. · Vor 11 Tage überprüft

no esta actualizado los comando que se detallan en el lab

Santiago G. · Vor 11 Tage überprüft

Harsh B. · Vor 11 Tage überprüft

Ridwan S. · Vor 11 Tage überprüft

Ayush K. · Vor 11 Tage überprüft

very satisfied

Samarthya C. · Vor 11 Tage überprüft

Kothem N. · Vor 11 Tage überprüft

Ridwan S. · Vor 11 Tage überprüft

Sri Vyshnavi Devi K. · Vor 11 Tage überprüft

Jeevan K. · Vor 11 Tage überprüft

Noelia P. · Vor 11 Tage überprüft

Venkateshwara K. · Vor 11 Tage überprüft

Ivette S. · Vor 11 Tage überprüft

Piotr F. · Vor 11 Tage überprüft

Sami S. · Vor 11 Tage überprüft

Bryan L. · Vor 11 Tage überprüft

student_04_90cc8b5166d4@cloudshell:~ (qwiklabs-gcp-01-2dd9a0ba449b)$ gcloud auth list Credentialed Accounts ACTIVE: * ACCOUNT: student-04-90cc8b5166d4@qwiklabs.net To set the active account, run: $ gcloud config set account `ACCOUNT` student_04_90cc8b5166d4@cloudshell:~ (qwiklabs-gcp-01-2dd9a0ba449b)$ gcloud config list project [core] project = qwiklabs-gcp-01-2dd9a0ba449b Your active configuration is: [cloudshell-18495] [environment: untagged] Read more to tag: g.co/cloud/project-env-tag. student_04_90cc8b5166d4@cloudshell:~ (qwiklabs-gcp-01-2dd9a0ba449b)$ gcloud config set compute/region us-central1 Updated property [compute/region]. student_04_90cc8b5166d4@cloudshell:~ (qwiklabs-gcp-01-2dd9a0ba449b)$ gcloud config set compute/zone us-central1-a Updated property [compute/zone]. student_04_90cc8b5166d4@cloudshell:~ (qwiklabs-gcp-01-2dd9a0ba449b)$ student_04_90cc8b5166d4@cloudshell:~ (qwiklabs-gcp-01-2dd9a0ba449b)$ gcloud compute instances create www1 \ --zone=us-central1-a \ --tags=network-lb-tag \ --machine-type=e2-small \ --image-family=debian-11 \ --image-project=debian-cloud \ --metadata=startup-script='#!/bin/bash apt-get update apt-get install apache2 -y service apache2 restart echo " Web Server: www1" | tee /var/www/html/index.html' Created [https://www.googleapis.com/compute/v1/projects/qwiklabs-gcp-01-2dd9a0ba449b/zones/us-central1-a/instances/www1]. NAME: www1 ZONE: us-central1-a MACHINE_TYPE: e2-small PREEMPTIBLE: INTERNAL_IP: 10.128.0.2 EXTERNAL_IP: 34.58.60.125 STATUS: RUNNING student_04_90cc8b5166d4@cloudshell:~ (qwiklabs-gcp-01-2dd9a0ba449b)$ gcloud compute instances create www2 \ --zone=us-central1-a \ --tags=network-lb-tag \ --machine-type=e2-small \ --image-family=debian-11 \ --image-project=debian-cloud \ --metadata=startup-script='#!/bin/bash apt-get update apt-get install apache2 -y service apache2 restart echo " Web Server: www2" | tee /var/www/html/index.html' Created [https://www.googleapis.com/compute/v1/projects/qwiklabs-gcp-01-2dd9a0ba449b/zones/us-central1-a/instances/www2]. NAME: www2 ZONE: us-central1-a MACHINE_TYPE: e2-small PREEMPTIBLE: INTERNAL_IP: 10.128.0.3 EXTERNAL_IP: 34.42.7.72 STATUS: RUNNING student_04_90cc8b5166d4@cloudshell:~ (qwiklabs-gcp-01-2dd9a0ba449b)$ gcloud compute instances create www3 \ --zone=us-central1-a \ --tags=network-lb-tag \ --machine-type=e2-small \ --image-family=debian-11 \ --image-project=debian-cloud \ --metadata=startup-script='#!/bin/bash apt-get update apt-get install apache2 -y service apache2 restart echo " Web Server: www3" | tee /var/www/html/index.html' Created [https://www.googleapis.com/compute/v1/projects/qwiklabs-gcp-01-2dd9a0ba449b/zones/us-central1-a/instances/www3]. NAME: www3 ZONE: us-central1-a MACHINE_TYPE: e2-small PREEMPTIBLE: INTERNAL_IP: 10.128.0.4 EXTERNAL_IP: 35.232.255.73 STATUS: RUNNING student_04_90cc8b5166d4@cloudshell:~ (qwiklabs-gcp-01-2dd9a0ba449b)$ gcloud compute firewall-rules create www-firewall-network-lb \ --target-tags network-lb-tag --allow tcp:80 Creating firewall...working..Created [https://www.googleapis.com/compute/v1/projects/qwiklabs-gcp-01-2dd9a0ba449b/global/firewalls/www-firewall-network-lb]. Creating firewall...done. NAME: www-firewall-network-lb NETWORK: default DIRECTION: INGRESS PRIORITY: 1000 ALLOW: tcp:80 DENY: DISABLED: False student_04_90cc8b5166d4@cloudshell:~ (qwiklabs-gcp-01-2dd9a0ba449b)$ gcloud compute instances list NAME: www1 ZONE: us-central1-a MACHINE_TYPE: e2-small PREEMPTIBLE: INTERNAL_IP: 10.128.0.2 EXTERNAL_IP: 34.58.60.125 STATUS: RUNNING NAME: www2 ZONE: us-central1-a MACHINE_TYPE: e2-small PREEMPTIBLE: INTERNAL_IP: 10.128.0.3 EXTERNAL_IP: 34.42.7.72 STATUS: RUNNING NAME: www3 ZONE: us-central1-a MACHINE_TYPE: e2-small PREEMPTIBLE: INTERNAL_IP: 10.128.0.4 EXTERNAL_IP: 35.232.255.73 STATUS: RUNNING student_04_90cc8b5166d4@cloudshell:~ (qwiklabs-gcp-01-2dd9a0ba449b)$ curl http://34.58.60.125 # Para www1 curl http://34.42.7.72 # Para www2 curl http://35.232.255.73 # Para www3 Web Server: www1 Web Server: www2 Web Server: www3 student_04_90cc8b5166d4@cloudshell:~ (qwiklabs-gcp-01-2dd9a0ba449b)$

jonnny m. · Vor 11 Tage überprüft

César Alejandro A. · Vor 11 Tage überprüft

Durgesh M. · Vor 11 Tage überprüft

Qi A. · Vor 11 Tage überprüft

Matias N. · Vor 11 Tage überprüft

Wir können nicht garantieren, dass die veröffentlichten Rezensionen von Verbrauchern stammen, die die Produkte gekauft oder genutzt haben. Die Rezensionen werden von Google nicht überprüft.