Set Up Network Load Balancers avis
517524 avis
Kasak M. · Examiné il y a 11 jours
nice and easy yo learn and do
Yash K. · Examiné il y a 11 jours
Naman G. · Examiné il y a 11 jours
Chandan T. · Examiné il y a 11 jours
ok
Antonio R. · Examiné il y a 11 jours
no esta actualizado los comando que se detallan en el lab
Santiago G. · Examiné il y a 11 jours
Harsh B. · Examiné il y a 11 jours
Ridwan S. · Examiné il y a 11 jours
Ayush K. · Examiné il y a 11 jours
very satisfied
Samarthya C. · Examiné il y a 11 jours
Kothem N. · Examiné il y a 11 jours
Ridwan S. · Examiné il y a 11 jours
Sri Vyshnavi Devi K. · Examiné il y a 11 jours
Jeevan K. · Examiné il y a 11 jours
Noelia P. · Examiné il y a 11 jours
Venkateshwara K. · Examiné il y a 11 jours
Ivette S. · Examiné il y a 11 jours
Piotr F. · Examiné il y a 11 jours
Sami S. · Examiné il y a 11 jours
Bryan L. · Examiné il y a 11 jours
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. · Examiné il y a 11 jours
César Alejandro A. · Examiné il y a 11 jours
Durgesh M. · Examiné il y a 11 jours
Qi A. · Examiné il y a 11 jours
Matias N. · Examiné il y a 11 jours
Nous ne pouvons pas certifier que les avis publiés proviennent de consommateurs qui ont acheté ou utilisé les produits. Les avis ne sont pas vérifiés par Google.