Network Load Balancer einrichten Rezensionen

517562 Rezensionen

Himanshi R. · Vor 11 Tage überprüft

25EU08R0395 - G. · Vor 11 Tage überprüft

Barun M. · Vor 11 Tage überprüft

Bella C. · Vor 11 Tage überprüft

Rajani S. · Vor 11 Tage überprüft

Piyush R. · Vor 11 Tage überprüft

Anas j. · Vor 11 Tage überprüft

karthick s. · Vor 11 Tage überprüft

Prasen N. · Vor 11 Tage überprüft

ok

Rahul M. · Vor 11 Tage überprüft

Michael H. · Vor 11 Tage überprüft

Manash P. · Vor 11 Tage überprüft

Pranjali P. · Vor 11 Tage überprüft

Rajesh M. · Vor 11 Tage überprüft

YUGENDER K. · Vor 11 Tage überprüft

Atharva B. · Vor 11 Tage überprüft

yes

Aryan P. · Vor 11 Tage überprüft

Sandipan B. · Vor 11 Tage überprüft

kamalpreet k. · Vor 11 Tage überprüft

Victor N. · Vor 11 Tage überprüft

Maria del Pilar S. · Vor 11 Tage überprüft

Soumya A. · Vor 11 Tage überprüft

José Benito G. · Vor 11 Tage überprüft

good skills

Mayank a. · 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

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.