How To Restore EC2 From Snapshot?

Vishal Padghan
Edureka
Published in
7 min readJan 18, 2019

Amazon EC2 and S3 are the most widely used services in Amazon. EC2 being a compute service and S3 being a lightweight storage service. It is always a good practice to create a backup for your EC2 instances so that if your instance is deleted or stops working you can restore EC2 from snapshot created.

Creating backups and recovery modules are one of the best methods for disaster management. In the case of data loss, you can always use the backups so that your work, business is not affected. Now that you know why backups and recovery modules are necessary, let me guide you through the topics that I will be discussing in this article about “ How To Restore EC2 From Snapshot “.

  • What Are EC2 And S3?
  • What Is EBS Volume?
  • What Is EBS Snapshot?
  • Demo : (Create An Instance, Delete It and Restore EC2 From Snapshot)

What Are EC2 and S3?

Amazon Web Services commonly known as AWS is a subsidiary of Amazon that provides on-demand cloud computing platform. AWS provides many services out of which EC2 and S3 are the ones which are commonly used.

Amazon EC2 forms the central part of Amazon’s cloud computing platform. Amazon allows individuals to rent virtual computers to run their own application. These virtual computers are known as an EC2 instance. EC2 instance in AWS are pre-defined with most commonly used Operating systems, you can create an operating system as per your requirement also.

Amazon S3 is a “simple storage service” provided by Amazon that provides object storage in the web interface. S3 uses the scalable storage infrastructure to provide storage to its customers in the global e-commerce network.

In this article, we will be focusing mostly on EC2 and S3. Now that you know what is Amazon EC2 and Amazon S3, let’s find out how are we going to use it in the process to restore EC2 instance using snapshot.

What Is EBS Volume?

Amazon EBS ( Elastic Block Storage) provides raw block-level storage that can be attached to Amazon EC2 and also used in Amazon RDS. Amazon EBS was launched in August 2008. EBS is used at places where there is:

  1. Frequent Data Change
  2. Data that need long-term persistence
  3. Databases where the frequency of read and write operations are more.
  4. Data that need constant updates
  5. Storage for Database Applications

What Is EBS Snapshot?

EBS Snapshot is used to backup data from EBS Volume to S3 by taking an in-time snapshot. Snapshot is nothing but an incremental backups. The nature of EBS Snapshot is same as that of the original volume (encrypted or not) and the nature of volumes created by EBS Snapshot remains same as that of the Snapshot (encrypted or not).

You can backup your data present in EBS Volume to Amazon S3 by taking point-in-time snapshot. Snapshots are incremental backups. Incremental backup means a copy containing only the files which are updated. This helps in minimizing the time required to create the backup.

Now that you know all about the things related to the storage services provided by Amazon, let’s learn how you can implement the above-given information practically.

Demo : (Create An Instance, Delete It and Restore EC2 From Snapshot)

In the article about how to restore EC2 from Snapshot, I will be working on the following things:-

  1. Create An EC2 Instance
  2. Create File To Verify After The Process To Restore EC2 From Snapshot
  3. Create An EBS Snapshot For The Instance
  4. Delete The EC2 Instance
  5. Restore EC2 From Snapshot
  • Create An AMI From The EBS Snapshot
  • Launch The Created AMI

6. Verify Whether Files Are Present Or Not?

Let’s take a closer look at each of the steps.

Create An Amazon EC2 Instance

Launch EC2 Instance using AWS Console.

Select the type of Instance.

Select the Storage type.

Select the VPC and Subnet in which you want your Instance.

Add storage.

Add Tags to your Instance.

Configure the Security Group.

Verify the details. Click on Launch.

Select the key-pair to access your Instance.Your Instance is created. Now it’s time to access the instance and create files.

Create File To Verify Later

Create a Directory named EdurekaDemo. Move to the directory. Create a file named edurekademotext.txt. Open the text file.

Write some text so that you can verify.

Create EBS Snapshot For The Instance

Locate the Volume.

Create Snapshot.

Give a description to your Snapshot and create Snapshot.

Delete The EC2 Instance

Terminate the Instance.

Restore EC2 From Snapshot

Create An AMI From The EBS Snapshot

Create Image from the EBS Snapshot.

Select a Name and Description and don’t forget to select Hardware-assisted Virtualization.

Your image creation request is processed and will be created in few minutes.

Launch The Created AMI

Create on Launch and redo all the steps done while creating EC2 Instance.

Your EC2 Instance is restored.

Your EC2 Instance is Created.

Verify Whether Files Are Present Or Not?

Verify whether the file we created is present or not:

Verified, the directory and file I created are present in the restored EC2 Instance.

This was the process to restore EC2 Instance using Snapshot is successful. I hope you understood the demo. The best way to learn is by implementing it. Go ahead and implement it.

If you wish to check out more articles on the market’s most trending technologies like Artificial Intelligence, DevOps, Ethical Hacking, then you can refer to Edureka’s official site.

If you wish to check out more articles on the market’s most trending technologies like Artificial Intelligence, DevOps, Ethical Hacking, then you can refer to Edureka’s official site.

Do look out for other articles in this series which will explain the various other aspects of AWS.

1. AWS Tutorial

2. AWS EC2

3. AWS Lambda

4. AWS Elastic Beanstalk

5. AWS S3

6. AWS Console

7. AWS RDS

8. AWS Migration

9. AWS Fargate

10. Amazon Lex

11. Amazon Lightsail

12. AWS Pricing

13. Amazon Athena

14. AWS CLI

15. Amazon VPC Tutorial

15. AWS vs Azure

17. On-premise vs Cloud computing

18. Amazon Dynamo DB Tutorial

19. AWS Resume

20. AWS CodeCommit

21.Top AWS Architect Interview Questions

22. How To Restore EC2 From Snapshot?

23.Create Websites using AWS

24.Amazon Route 53

25. Securing Web Applications With AWS WAF

Originally published at https://www.edureka.co on January 18, 2019.

--

--