AWS Elastic Block Storage (EBS) Snapshots

Postgraduate in Communications Engineering with working experience in the Support Desk and self-study in software development.
Search for a command to run...

Postgraduate in Communications Engineering with working experience in the Support Desk and self-study in software development.
The git log command is used to view the commit history of a Git repository. You can customize the output format to show specific details in a more readable or structured way. Below are some useful variations and formatting options for git log: To sh...

Overview This article will teach us how to: Install Ubuntu Server 24.04 on a laptop from scratch Install Ubuntu server by using Vagrant tool with ISO image Prerequisites: A laptop without any OS installed; A virtualization software Virtualbox t...

The /etc/passwd and /etc/shadow files are the backbone of Linux user management. Together, they store user account information and handle authentication securely. This article provides a hands-on guide to understanding these files, their structure, a...

In Linux, links are powerful tools that allow you to create references to files and directories. There are two main types of links: hard links and soft links (also known as symbolic links or symlinks). Understanding the differences between these two ...

A hostname is a human-friendly name given to a computer. It is a unique identifier that allows us to identify the machine in various network communications, making it easier to locate and manage devices. Type: hostname To see where it is stored, typ...

Amazon Web Services (AWS) Elastic Block Store (EBS) provides block-level storage volumes that can be thought of as virtual hard drives attached to EC2 instances running on AWS.
An EBS snapshot is a point-in-time copy of your EBS volume.
Point-in-time Backup: When you create a snapshot, it represents the state of the volume at the moment the snapshot is initiated. Even if data continues to change on the volume, the snapshot only contains the data up to the point of the snapshot.
Incremental: While the first snapshot captures all the data on the volume, subsequent snapshots only store the changes since the last snapshot. This means snapshots are incremental in nature and save storage space.
Storage in Amazon S3: EBS snapshots are stored in Amazon S3, which provides durability by replicating the data across multiple geographically separated data centers.
Restoration: You can create a new EBS volume from a snapshot, which can be useful for recovery purposes, creating clones for testing, or migrating data across regions or accounts.
Cross-Region and Cross-Account Copy: Snapshots can be copied across AWS regions or between AWS accounts, aiding in disaster recovery strategies or data sharing.
Lifecycle Management: AWS also offers the ability to automate the creation, retention, and deletion of EBS snapshots through services like AWS Data Lifecycle Manager (DLM).
Costs: You pay for the storage used by EBS snapshots, but because snapshots are incremental, the cost is often less than the cost of the entire volume.
Encryption: Snapshots can be encrypted, and if they're created from encrypted volumes, they are automatically encrypted.
In this hands-on lab, we will create a snapshot of the EBS volume with AWS Console, copy it into other regions, recreate another volume from an existing snapshot, and finally create a recycle bin that protects EBS snapshots and AMIs from accidental deletion.
Open the Amazon EC2 console at https://console.aws.amazon.com/ec2/.
In the navigation pane, choose Snapshots, Create snapshot.
For Resource type, choose Volume.
For Volume ID, select the volume from which to create the snapshot.
The Encryption field indicates the selected volume's encryption status. If the selected volume is encrypted, the snapshot is automatically encrypted using the same KMS key. If the selected volume is unencrypted, the snapshot is not encrypted.
(Optional) For Description, enter a brief description for the snapshot.
(Optional) To assign custom tags to the snapshot, in the Tags section, choose Add tag, and then enter the key-value pair. You can add up to 50 tags.
Choose Create snapshot.




