arrow_back

Google Cloud Fundamentals: Getting Started with Cloud Storage and Cloud SQL

Anmelden Teilnehmen
Testen und teilen Sie Ihr Wissen mit unserer Community.
done
Sie erhalten Zugriff auf über 700 praxisorientierte Labs, Skill-Logos und Kurse

Google Cloud Fundamentals: Getting Started with Cloud Storage and Cloud SQL

Lab 1 Stunde 15 Minuten universal_currency_alt 5 Guthabenpunkte show_chart Einsteiger
info Dieses Lab kann KI-Tools enthalten, die den Lernprozess unterstützen.
Testen und teilen Sie Ihr Wissen mit unserer Community.
done
Sie erhalten Zugriff auf über 700 praxisorientierte Labs, Skill-Logos und Kurse

Overview

In this lab, you create a Cloud Storage bucket and place an image in it. You also configure an application running in Compute Engine to use a database managed by Cloud SQL. For this lab, you configure a web server with PHP, a web development environment that is the basis for popular blogging software. Outside this lab, you will use analogous techniques to configure these packages.

You also configure the web server to reference the image in the Cloud Storage bucket.

Objectives

In this lab, you learn how to perform the following tasks:

  • Create a Cloud Storage bucket and place an image into it.
  • Create a Cloud SQL instance and configure it.
  • Connect to the Cloud SQL instance from a web server.
  • Use the image in the Cloud Storage bucket on a web page.

Task 1. Sign in to the Google Cloud Console

For each lab, you get a new Google Cloud project and set of resources for a fixed time at no cost.

  1. Sign in to Qwiklabs using an incognito window.

  2. Note the lab's access time (for example, 1:15:00), and make sure you can finish within that time.
    There is no pause feature. You can restart if needed, but you have to start at the beginning.

  3. When ready, click Start lab.

  4. Note your lab credentials (Username and Password). You will use them to sign in to the Google Cloud Console.

  5. Click Open Google Console.

  6. Click Use another account and copy/paste credentials for this lab into the prompts.
    If you use other credentials, you'll receive errors or incur charges.

  7. Accept the terms and skip the recovery resource page.

Task 2. Deploy a web server VM instance

  1. In the Google Cloud console, on the Navigation menu (Navigation menu icon), click Compute Engine > VM instances.

  2. Click Create Instance.

  3. On the Create an Instance page, for Name, type bloghost

  4. For Region and Zone, select the region and zone assigned by Qwiklabs.

  5. For Machine type, accept the default.

  6. For Boot disk, if the Image shown is not Debian GNU/Linux 11 (bullseye), click Change and select Debian GNU/Linux 11 (bullseye).

  7. Leave the defaults for Identity and API access unmodified.

  8. For Firewall, click Allow HTTP traffic.

  9. Click Advanced options to open that section of the dialog.

  10. Click Management to open that section of the dialog.

  11. Scroll down to the Automation section, and enter the following script as the value for Startup script:

apt-get update apt-get install apache2 php php-mysql -y service apache2 restart Note: Be sure to supply that script as the value of the Startup script field. If you accidentally put it into another field, it won't be executed when the VM instance starts.
  1. Leave the remaining settings as their defaults, and click Create.
Note: Instance can take about two minutes to launch and be fully available for use.
  1. On the VM instances page, copy the bloghost VM instance's internal and external IP addresses to a text editor for use later in this lab.

Click Check my progress to verify the objective. Deploy a web server VM instance

Task 3. Create a Cloud Storage bucket using the gcloud storage command line

All Cloud Storage bucket names must be globally unique. To ensure that your bucket name is unique, these instructions will guide you to give your bucket the same name as your Google Cloud project ID, which is also globally unique.

Cloud Storage buckets can be associated with either a region or a multi-region location: US, EU, or ASIA. In this activity, you associate your bucket with the multi-region closest to the region and zone that Qwiklabs or your instructor assigned you to.

  1. On the Google Cloud console, on the top right toolbar, click the Activate Cloud Shell Activate Cloud Shell icon. If a dialog box appears, click Continue.

  2. For convenience, enter your chosen location into an environment variable called LOCATION. Enter one of these commands:

export LOCATION=US

Or

export LOCATION=EU

Or

export LOCATION=ASIA
  1. In Cloud Shell, the DEVSHELL_PROJECT_ID environment variable contains your project ID. Enter this command to make a bucket named after your project ID:
gcloud storage buckets create -l $LOCATION gs://$DEVSHELL_PROJECT_ID

If prompted, click Authorize to continue.

  1. Retrieve a banner image from a publicly accessible Cloud Storage location:
gcloud storage cp gs://cloud-training/gcpfci/my-excellent-blog.png my-excellent-blog.png
  1. Copy the banner image to your newly created Cloud Storage bucket:
gcloud storage cp my-excellent-blog.png gs://$DEVSHELL_PROJECT_ID/my-excellent-blog.png
  1. Modify the Access Control List of the object you just created so that it's readable by everyone:
gsutil acl ch -u allUsers:R gs://$DEVSHELL_PROJECT_ID/my-excellent-blog.png

Click Check my progress to verify the objective. Create a Cloud Storage bucket using the gcloud storage command line

Task 4. Create the Cloud SQL instance

  1. In the Google Cloud console, on the Navigation menu (Navigation menu icon), click SQL.

  2. Click Create instance.

  3. For Choose a database engine, select Choose MySQL.

  4. For Instance ID, type blog-db, and for Root password type a password of your choice.

Note: Choose a password that you remember. There's no need to obscure the password because you use mechanisms to connect that aren't open access to everyone.
  1. For Choose a Cloud SQL edition, click Enterprise and then select Sandbox from the dropdown.

  2. Select Single zone and set the region and zone assigned by Qwiklabs.

Note: This is the same region and zone into which you launched the bloghost instance. The best performance is achieved by placing the client and the database close to each other.
  1. Click Create Instance.
Note: Wait for the instance to finish deploying. It will take a few minutes.
  1. Click the name of the instance, blog-db, to open its details page.

  2. From the SQL instances details page, copy the Public IP address for your SQL instance to a text editor for use later in this lab.

  3. Click Users menu on the left-hand side, and then click Add User Account.

  4. For User name, type blogdbuser

  5. For Password, type a password of your choice. Make a note of it.

  6. Click Add to add the user account in the database.

Note: Wait for the user to be created.
  1. Click Connections menu on the left-hand side, and then click Networking tab.

  2. Click Add a Network.

Note: If you're offered the choice between a Private IP connection and a Public IP connection, choose Public IP for purposes of this lab. Note: The Add network button may be unavailable if the user account creation is not yet complete.
  1. For Name, type web front end

  2. For Network, type the external IP address of your bloghost VM instance, followed by /32

The result will look like this:

35.192.208.2/32 Note: Be sure to use the external IP address of your VM instance followed by /32. Do not use the VM instance's internal IP address. Do not use the sample IP address shown here.
  1. Click Done to finish defining the authorized network.

  2. Click Save to save the configuration change.

Note: If the message appears like Another operation is in progress, wait for few minutes until you see the green check for blog-db to save the configuration.

Click Check my progress to verify the objective. Create the Cloud SQL instance

Task 5. Configure an application in a Compute Engine instance to use Cloud SQL

  1. On the Navigation menu (Navigation menu icon), click Compute Engine > VM instances.

  2. In the VM instances list, click SSH in the row for your VM instance bloghost.

  3. In your ssh session on bloghost, change your working directory to the document root of the web server:

cd /var/www/html
  1. Use the nano text editor to edit a file called index.php:
sudo nano index.php
  1. Paste the content below into the file:
<html> <head><title>Welcome to my excellent blog</title></head> <body> <h1>Welcome to my excellent blog</h1> <?php $dbserver = "CLOUDSQLIP"; $dbuser = "blogdbuser"; $dbpassword = "DBPASSWORD"; // In a production blog, we would not store the MySQL // password in the document root. Instead, we would store // it in a Secret Manger. For more information see // https://cloud.google.com/sql/docs/postgres/use-secret-manager $conn = new mysqli($dbserver, $dbuser, $dbpassword); if (mysqli_connect_error()) { echo ("Database connection failed: " . mysqli_connect_error()); } else { echo ("Database connection succeeded."); } ?> </body></html> Note: In a later step, you will insert your Cloud SQL instance's IP address and your database password into this file. For now, leave the file unmodified.
  1. Press Ctrl+O, and then press Enter to save your edited file.

  2. Press Ctrl+X to exit the nano text editor.

  3. Restart the web server:

sudo service apache2 restart
  1. Open a new web browser tab and paste into the address bar your bloghost VM instance's external IP address followed by /index.php. The URL will look like this:
35.192.208.2/index.php Note: Be sure to use the external IP address of your VM instance followed by /index.php. Do not use the VM instance's internal IP address. Do not use the sample IP address shown here.

When you load the page, you will see that its content includes an error message beginning with the words:

Database connection failed: ... Note: This message occurs because you have not yet configured PHP's connection to your Cloud SQL instance.
  1. Return to your ssh session on bloghost. Use the nano text editor to edit index.php again.
sudo nano index.php
  1. In the nano text editor, replace CLOUDSQLIP with the Cloud SQL instance Public IP address that you noted above. Leave the quotation marks around the value in place.

  2. In the nano text editor, replace DBPASSWORD with the Cloud SQL database password that you defined above. Leave the quotation marks around the value in place.

  3. Press Ctrl+O, and then press Enter to save your edited file.

  4. Press Ctrl+X to exit the nano text editor.

  5. Restart the web server:

sudo service apache2 restart
  1. Return to the web browser tab in which you opened your bloghost VM instance's external IP address. When you load the page, the following message appears:
Database connection succeeded. Note: In an actual blog, the database connection status would not be visible to blog visitors. Instead, the database connection would be managed solely by the administrator.

Task 6. Configure an application in a Compute Engine instance to use a Cloud Storage object

  1. In the Google Cloud console, click Cloud Storage > Buckets.

  2. Click the bucket that is named after your Google Cloud project.

  3. In this bucket, there is an object called my-excellent-blog.png. Copy the URL behind the link icon that appears in that object's Public access column, or behind the words "Public link" if shown.

Note: If you see neither a link icon nor a "Public link", try refreshing the browser. If you still do not see a link icon, return to Cloud Shell and confirm that your attempt to change the object's Access Control list with the gsutil acl ch command was successful.
  1. Return to your ssh session on your bloghost VM instance.

  2. Enter this command to set your working directory to the document root of the web server:

cd /var/www/html
  1. Use the nano text editor to edit index.php:
sudo nano index.php
  1. Use the arrow keys to move the cursor to the line that contains the h1 element. Press Enter to open up a new, blank screen line, and then paste the URL you copied earlier into the line.

  2. Paste this HTML markup immediately before the URL:

<img src='
  1. Place a closing single quotation mark and a closing angle bracket at the end of the URL:
'>

The resulting line will look like this:

<img src='https://storage.googleapis.com/qwiklabs-gcp-0005e186fa559a09/my-excellent-blog.png'>

The effect of these steps is to place the line containing <img src='...'> immediately before the line containing <h1>...</h1>

Note: Do not copy the URL shown here. Instead, copy the URL shown by the Storage browser in your own Cloud Platform project.
  1. Press Ctrl+O, and then press Enter to save your edited file.

  2. Press Ctrl+X to exit the nano text editor.

  3. Restart the web server:

sudo service apache2 restart
  1. Return to the web browser tab in which you opened your bloghost VM instance's external IP address. When you load the page, its content now includes a banner image.

Congratulations!

In this lab, you configured a Cloud SQL instance and connected an application in a Compute Engine instance to it. You also worked with a Cloud Storage bucket.

End your lab

When you have completed your lab, click End Lab. Google Cloud Skills Boost removes the resources you’ve used and cleans the account for you.

You will be given an opportunity to rate the lab experience. Select the applicable number of stars, type a comment, and then click Submit.

The number of stars indicates the following:

  • 1 star = Very dissatisfied
  • 2 stars = Dissatisfied
  • 3 stars = Neutral
  • 4 stars = Satisfied
  • 5 stars = Very satisfied

You can close the dialog box if you don't want to provide feedback.

For feedback, suggestions, or corrections, please use the Support tab.

Copyright 2022 Google LLC All rights reserved. Google and the Google logo are trademarks of Google LLC. All other company and product names may be trademarks of the respective companies with which they are associated.

More resources

Read the Google Cloud Platform documentation on Cloud SQL.

Read the Google Cloud Platform documentation on Cloud Storage.

827b33e18db55754.png

Diese Inhalte sind derzeit nicht verfügbar

We will notify you via email when it becomes available

Sehr gut!

We will contact you via email if it becomes available