- Lab
- A Cloud Guru
Working with Snapshots on Google Compute Engine
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.
Path Info
Table of Contents
-
Challenge
Create Snapshot Using Web Console
- Go to the top-left menu > Compute Engine > Snapshots
- Click Create snapshot
- Name snapshot "web-backup-v1"
- In Source Disk dropdown menu, select Website
- Click Create
-
Challenge
Make Instance Change – Update Website to VERSION 2
-
Connect to the website instance using SSH from the Compute Engine web console
-
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
-
Exit SSH session
-
-
Challenge
Create New Snapshot Using the Cloud Shell
-
Activate the Cloud Shell by clicking its icon in the top row.
-
If no ID is displayed in yellow in the Cloud Shell, open the Project panel by clicking the project name in the upper-left.
-
Copy the current project ID.
-
In the Cloud Shell, enter the following command:
gcloud config set project <PROJECT_ID>
-
Create a new snapshot with the following command:
gcloud compute disks snapshot website --snapshot-names web-backup-v2 --zone us-central1-a
-
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
-
-
Challenge
Restore First Snapshot Using Web Console in New Zone
- Go to top left menu > Compute Engine
- Click CREATE INSTANCE
- Name instance "website-restore-1"
- From the Region list, choose us-east1 and from Zone, choose us-east1-a.
- Under Machine configuration, from the Series list, choose First Generation - N1.
- From the Machine type list, choose n1-standard-1.
- Under Boot Disk, click Change.
- In the Boot Disk options, click the Snapshots tab.
- From the Snapshot list, choose web-backup-v1 and click Select.
- In the Firewall section, check the Allow HTTP traffic option.
- Click Create
-
Challenge
Restore Second Snapshot Using Command Line
-
Navigate to Cloud Shell
-
Create disk from snapshot:
gcloud compute disks create website-restore-2 --source-snapshot web-backup-v2 --zone us-central1-a
-
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
-
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!
-
What's a lab?
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.
Provided environment for hands-on practice
We will provide the credentials and environment necessary for you to practice right within your browser.
Guided walkthrough
Follow along with the author’s guided walkthrough and build something new in your provided environment!
Did you know?
On average, you retain 75% more of your learning if you get time for practice.