Working with Snapshots on Google Compute Engine

1 hour
  • 5 Learning Objectives

About this Hands-on Lab

This hands-on lab will help to provide experience working with snapshots on Compute Engine, both in the web console and command line format, which we will interact with via Cloud Shell.

Learning Objectives

Successfully complete this lab by achieving the following learning objectives:

Create Snapshot Using Web Console
  1. Go to the top-left menu > Compute Engine > Snapshots
  2. Click Create snapshot
  3. Name snapshot "web-backup-v1"
  4. In Source Disk dropdown menu, select Website
  5. Click Create
Make Instance Change – Update Website to VERSION 2
  1. Connect to the website instance using SSH from the Compute Engine web console

  2. Enter the following command to replace index page with ‘VERSION 2’ instead of ‘VERSION 1’:

    sudo sed -i 's/VERSION 1/VERSION 2/' /var/www/html/index.html
  3. Exit SSH session

Create New Snapshot Using the Cloud Shell
  1. Activate the Cloud Shell by clicking its icon in the top row.

  2. If no ID is displayed in yellow in the Cloud Shell, open the Project panel by clicking the project name in the upper-left.

  3. Copy the current project ID.

  4. In the Cloud Shell, enter the following command:

    gcloud config set project <PROJECT_ID>
  5. Create a new snapshot with the following command:

    gcloud compute disks snapshot website --snapshot-names web-backup-v2 --zone us-central1-a
  6. Verify snapshots using web console and Cloud Shell. Notice the size of the second snapshot compared to first:

    gcloud compute snapshots list
    gcloud compute snapshots describe web-backup-v2
Restore First Snapshot Using Web Console in New Zone
  1. Go to top left menu > Compute Engine
  2. Click CREATE INSTANCE
  3. Name instance "website-restore-1"
  4. From the Region list, choose us-east1 and from Zone, choose us-east1-a.
  5. Under Machine configuration, from the Series list, choose First Generation – N1.
  6. From the Machine type list, choose n1-standard-1.
  7. Under Boot Disk, click Change.
  8. In the Boot Disk options, click the Snapshots tab.
  9. From the Snapshot list, choose web-backup-v1 and click Select.
  10. In the Firewall section, check the Allow HTTP traffic option.
  11. Click Create
Restore Second Snapshot Using Command Line
  1. Navigate to Cloud Shell

  2. Create disk from snapshot:

    gcloud compute disks create website-restore-2 --source-snapshot web-backup-v2 --zone us-central1-a
  3. Create new instance from disk:

    gcloud compute instances create website-restore-2 --disk name=website-restore-2,boot=yes --zone us-central1-a --tags=http-server
  4. Confirm the new instance by returning to the console VM page and clicking its External IP link.

Congratulations, you’ve completed this hands-on lab!

Additional Resources

Be sure to launch the lab in incognito mode (or your browser's private browsing function) to avoid cached login issues. You will already have a GCE instance in your lab that we will use for the demonstration.

What are Hands-on Labs

Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.

Sign In
Welcome Back!

Psst…this one if you’ve been moved to ACG!

Get Started
Who’s going to be learning?