Skip to main content

Command Palette

Search for a command to run...

Step-by-Step Guide to Create a Snapshot, and Volume from Snapshot

Detailed Instructions to Make a Snapshot and Create a Volume from It

Updated
•1 min read•View as Markdown
Step-by-Step Guide to Create a Snapshot, and Volume from Snapshot
A
Software engineer working in Go. I write deep dives on Go internals and distributed systems, the goroutine scheduler, channel patterns, and what it takes to build reliable backend infrastructure. Currently going deep on distributed systems, AWS, and consensus.

Creating a snapshot from volume

  1. Open the AWS Management Console and navigate to the EC2 dashboard.

  2. In the left navigation panel, choose Volumes under the Elastic Block Store section.

  3. Select the volume you want to snapshot.

  4. Got to Action -> Create snapshot.

  5. Write a suitable description that may be used to identify the snapshot.

  6. Scroll and click Create Snapshot.

  7. In the left navigation panel, choose Snapshots under the Elastic Block Store section.

  8. You can see the newly created snapshot.

Creating volume from a snapshot

  1. Select the snapshot.

  2. Go to Action -> Create volume from snapshot.

  3. Select the Volume type to General Purpose SSD(GP2).

  4. Select a size as 30 GiB.

  5. Scroll and click Create Volume.

  6. In the left navigation panel, choose Volumes under the Elastic Block Store section.

  7. You can see the newly created volume.

AWS Training Chronicles: From Novice to Expert

Part 9 of 22

Follow my journey as I learn AWS from scratch, sharing insights, tips, and hands-on experiences along the way.

Up next

Step-by-Step Guide: Creating an Instance from a Snapshot

Quick Guide to Making an Instance from a Snapshot