SlideShare a Scribd company logo
EBS
(Elastic Block Store)
Presented by Arya TM
AWS Cloud Storage Products
1. Amazon Elastic Block Store(Amazon EBS)
2. Amazon Simple Storage Service(Amazon S3)
3. Amazon Elastic File System (Amazon EFS)
4. Amazon Glacier
5. AWS Storage Gateway
AWS EC2 Storage Options
1. Amazon Elastic Block Store(Amazon EBS)
2. Instance Store.
● Block-level storage volumes for use with EC2 instances.
● Use them like any block device (like a hard drive).
● EBS volumes are network-attached, and persist independently from the life of an
instance
● Once mounted, the instance can interact with the volume as it would with a local drive,
formatting it with a file system or installing applications on it directly.
● Storage volume sizes range from 1GB-1TB
● A volume can only be attached to one instance at a time, but many volumes can be
attached to a single instance
● Suitable for apps that require a database, file system, or access to raw block level storage.
Amazon Elastic Block Store(Amazon EBS)
● EBS volumes are placed in a specific Availability Zone, and can then be attached to
instances also in that same Availability Zone.
● Each storage volume is automatically replicated within the same Availability Zone.
● EBS provides the ability to create point-in-time snapshots of volumes, which are
persisted to Amazon S3.
● These snapshots can be used as the starting point for new Amazon EBS volumes, and
protect data for long-term durability.
● The same snapshot can be used to instantiate as many volumes as you wish.
● These snapshots can be copied across AWS regions.
Amazon Elastic Block Store(Amazon EBS)
Different types of Elastic Block Store(Amazon EBS)
● Data availability
- When you create an EBS volume in an Availability Zone, it is automatically replicated within that
zone to prevent data loss due to failure of any single hardware component.
● Data persistence
- An EBS volume is off-instance storage that can persist independently from the life of an instance.
You continue to pay for the volume usage as long as the data persists.
● Data encryption
● Snapshots
- Amazon EBS provides the ability to create snapshots (backups) of any EBS volume and write a
copy of the data in the volume to Amazon S3, where it is stored redundantly in multiple Availability
Zones.
● Flexibility
- EBS volumes support live configuration changes while in production. You can modify volume
type, volume size, and IOPS capacity without service interruptions.
Benefits of Using EBS Volumes
● EBS provides the ability to back up point-in-time snapshots of your data to S3.
● Snapshots are incremental backups: only the blocks on the device that have changed since your last
snapshot will be saved.
● For Example: If you have a device with 100GBs of data, but only 5GBs of data has changed since
your last snapshot, only the 5 additional GBs of snapshot data will be stored back to S3
Snapshot of EBS
Snapshot of EBS
1. Open the Amazon EC2 console at https://console.aws.amazon.com/ec2/.
2. Choose Snapshots in the navigation pane.
3. Choose Create Snapshot.
4. On the Create Snapshot page, select the volume to create a snapshot for.
5. (Optional) Choose Add tags to your snapshot. For each tag, provide a tag key and a tag
value.
Snapshot of EBS
1. OpenAWS Console.
2. Click the Volume section within AWS console under the EC2 dashboard.
3. Click on Create Volume button
● The first thing that you will have to specify is the volume type.
● The next piece of information that you must provide is the size of the volume that you want to create. The volume
size can be between 1GB and 16TB.
● You will also have to specify the availability zone for the volume that you are creating. This setting essentially
determines where in the world the volume will physically reside.
● Then the snapshot ID. You won't have to worry about providing a snapshot ID unless you want to create the
volume based on an existing snapshot.
● The last setting on this dialog box is the Encryption setting. this setting allows you to use a simple checkbox to
encrypt the volume.
● Click the Create button and the volume will be created.
4. To link the volume to an instance
● right-click on the volume and choose the Attach Volume command from the shortcut menu.
● provide an instance ID for the instance. You can only attach a volume to an instance that exists in the same
availability zone as the volume
● provide a device ID for the volume.
● Click the Attach button to attach the volume to the instance,
Creating and attaching additional EBS volume.
● Log in to an instance through ssh and list the disk attached to the instance by using the command:
# fdisk -l
● List the block device by using the command:
# lsblk
● Check the file system on the attached volume:
# file -s /dev/xvdf
● create a file system for them before we can mount them. We can do this by using:
# mkfs.ext4 /dev/xvdf
● Create a mount directory where you want to mount the device:
# mkdir /mountdir
● Open the /etc/fstab file and add a new line at the end of file
/dev/xvdf /mountdir ext4 defaults 0 0
● Run below-mentioned mount command to mount all of the filesystems in /etc/fstab file.
# mount -a
● Check the disk’s free space by using the command below
# df -h
Mount EBS Volume
Presented by Arya TM

More Related Content

What's hot

Docker, Cloud and the Elastic Future of FME
Docker, Cloud and the Elastic Future of FMEDocker, Cloud and the Elastic Future of FME
Docker, Cloud and the Elastic Future of FME
Safe Software
 
Xen Installation Presentation
Xen Installation Presentation Xen Installation Presentation
Xen Installation Presentation
Abhijeet Patil
 
Create Diskgroup Sqlplus Command
Create Diskgroup Sqlplus CommandCreate Diskgroup Sqlplus Command
Create Diskgroup Sqlplus Command
Arun Sharma
 
Configuring MongoDB HA Replica Set on AWS EC2
Configuring MongoDB HA Replica Set on AWS EC2Configuring MongoDB HA Replica Set on AWS EC2
Configuring MongoDB HA Replica Set on AWS EC2
ShepHertz
 
Packer + Ansible을 이용한 AMI 생성 및 AutoScaling Group 이미지 교체 이야기
Packer + Ansible을 이용한 AMI 생성 및 AutoScaling Group 이미지 교체 이야기Packer + Ansible을 이용한 AMI 생성 및 AutoScaling Group 이미지 교체 이야기
Packer + Ansible을 이용한 AMI 생성 및 AutoScaling Group 이미지 교체 이야기
창훈 정
 
Games with your head in the cloud
Games with your head in the cloudGames with your head in the cloud
Games with your head in the cloud
Julien Ellie
 
プラットフォーム分科会_20100804
プラットフォーム分科会_20100804プラットフォーム分科会_20100804
プラットフォーム分科会_20100804
Yoshiki Ushida
 

What's hot (7)

Docker, Cloud and the Elastic Future of FME
Docker, Cloud and the Elastic Future of FMEDocker, Cloud and the Elastic Future of FME
Docker, Cloud and the Elastic Future of FME
 
Xen Installation Presentation
Xen Installation Presentation Xen Installation Presentation
Xen Installation Presentation
 
Create Diskgroup Sqlplus Command
Create Diskgroup Sqlplus CommandCreate Diskgroup Sqlplus Command
Create Diskgroup Sqlplus Command
 
Configuring MongoDB HA Replica Set on AWS EC2
Configuring MongoDB HA Replica Set on AWS EC2Configuring MongoDB HA Replica Set on AWS EC2
Configuring MongoDB HA Replica Set on AWS EC2
 
Packer + Ansible을 이용한 AMI 생성 및 AutoScaling Group 이미지 교체 이야기
Packer + Ansible을 이용한 AMI 생성 및 AutoScaling Group 이미지 교체 이야기Packer + Ansible을 이용한 AMI 생성 및 AutoScaling Group 이미지 교체 이야기
Packer + Ansible을 이용한 AMI 생성 및 AutoScaling Group 이미지 교체 이야기
 
Games with your head in the cloud
Games with your head in the cloudGames with your head in the cloud
Games with your head in the cloud
 
プラットフォーム分科会_20100804
プラットフォーム分科会_20100804プラットフォーム分科会_20100804
プラットフォーム分科会_20100804
 

Similar to EBS elastic block store

Aws Elastic Block Storage
Aws Elastic Block StorageAws Elastic Block Storage
Aws Elastic Block Storage
Dhananjay Aloorkar
 
Aws storage
Aws storageAws storage
Aws storage
Chandan Ganguly
 
Oracle Cloud Infrastructure – Storage
Oracle Cloud Infrastructure – StorageOracle Cloud Infrastructure – Storage
Oracle Cloud Infrastructure – Storage
MarketingArrowECS_CZ
 
AWS basics session
AWS basics sessionAWS basics session
AWS basics session
Sharad Gupta
 
Benefity Oracle Cloudu (4/4): Storage
Benefity Oracle Cloudu (4/4): StorageBenefity Oracle Cloudu (4/4): Storage
Benefity Oracle Cloudu (4/4): Storage
MarketingArrowECS_CZ
 
The iot academy_awstraining_part1_aws_introduction
The iot academy_awstraining_part1_aws_introductionThe iot academy_awstraining_part1_aws_introduction
The iot academy_awstraining_part1_aws_introduction
The IOT Academy
 
AWS Accelerated Program - Session 2 - Storage Services.pptx
AWS Accelerated Program - Session 2 - Storage Services.pptxAWS Accelerated Program - Session 2 - Storage Services.pptx
AWS Accelerated Program - Session 2 - Storage Services.pptx
DipaliKulshrestha2
 
AWS Elastic Compute Cloud (EC2)
AWS Elastic Compute Cloud (EC2) AWS Elastic Compute Cloud (EC2)
AWS Elastic Compute Cloud (EC2)
zekeLabs Technologies
 
AWS re:Invent 2016: Deep Dive on Amazon Elastic File System (STG202)
AWS re:Invent 2016: Deep Dive on Amazon Elastic File System (STG202)AWS re:Invent 2016: Deep Dive on Amazon Elastic File System (STG202)
AWS re:Invent 2016: Deep Dive on Amazon Elastic File System (STG202)
Amazon Web Services
 
AWS EBS
AWS EBSAWS EBS
AWS EBS
Mahesh Raj
 
Getting Started with EC2, S3 and EMR
Getting Started with EC2, S3 and EMRGetting Started with EC2, S3 and EMR
Getting Started with EC2, S3 and EMR
Arun Sirimalla
 
Running Microsoft and Oracle Stacks on Elastic Block Store (STG303) | AWS re:...
Running Microsoft and Oracle Stacks on Elastic Block Store (STG303) | AWS re:...Running Microsoft and Oracle Stacks on Elastic Block Store (STG303) | AWS re:...
Running Microsoft and Oracle Stacks on Elastic Block Store (STG303) | AWS re:...
Amazon Web Services
 
Amazon EC2 Instance Types.pptx
Amazon EC2 Instance Types.pptxAmazon EC2 Instance Types.pptx
Amazon EC2 Instance Types.pptx
RomitSingh17
 
CloudOverviewAWS.pptx
CloudOverviewAWS.pptxCloudOverviewAWS.pptx
CloudOverviewAWS.pptx
ssuser73fa361
 
Amazon ec2
Amazon ec2Amazon ec2
Amazon ec2
Joydip Ghosh
 
Deep Dive on Amazon Elastic File System (Amazon EFS)
Deep Dive on Amazon Elastic File System (Amazon EFS)Deep Dive on Amazon Elastic File System (Amazon EFS)
Deep Dive on Amazon Elastic File System (Amazon EFS)
Amazon Web Services
 
(STG402) Amazon EBS Deep Dive
(STG402) Amazon EBS Deep Dive(STG402) Amazon EBS Deep Dive
(STG402) Amazon EBS Deep Dive
Amazon Web Services
 
Amazon Web Services lection 2
Amazon Web Services lection 2Amazon Web Services lection 2
Amazon Web Services lection 2
Binary Studio
 
Basic ppt on cloud computing on amazon web
Basic ppt on cloud computing on amazon webBasic ppt on cloud computing on amazon web
Basic ppt on cloud computing on amazon web
RahulBhole12
 
Scaling Django Apps using AWS Elastic Beanstalk
Scaling Django Apps using AWS Elastic BeanstalkScaling Django Apps using AWS Elastic Beanstalk
Scaling Django Apps using AWS Elastic Beanstalk
Lushen Wu
 

Similar to EBS elastic block store (20)

Aws Elastic Block Storage
Aws Elastic Block StorageAws Elastic Block Storage
Aws Elastic Block Storage
 
Aws storage
Aws storageAws storage
Aws storage
 
Oracle Cloud Infrastructure – Storage
Oracle Cloud Infrastructure – StorageOracle Cloud Infrastructure – Storage
Oracle Cloud Infrastructure – Storage
 
AWS basics session
AWS basics sessionAWS basics session
AWS basics session
 
Benefity Oracle Cloudu (4/4): Storage
Benefity Oracle Cloudu (4/4): StorageBenefity Oracle Cloudu (4/4): Storage
Benefity Oracle Cloudu (4/4): Storage
 
The iot academy_awstraining_part1_aws_introduction
The iot academy_awstraining_part1_aws_introductionThe iot academy_awstraining_part1_aws_introduction
The iot academy_awstraining_part1_aws_introduction
 
AWS Accelerated Program - Session 2 - Storage Services.pptx
AWS Accelerated Program - Session 2 - Storage Services.pptxAWS Accelerated Program - Session 2 - Storage Services.pptx
AWS Accelerated Program - Session 2 - Storage Services.pptx
 
AWS Elastic Compute Cloud (EC2)
AWS Elastic Compute Cloud (EC2) AWS Elastic Compute Cloud (EC2)
AWS Elastic Compute Cloud (EC2)
 
AWS re:Invent 2016: Deep Dive on Amazon Elastic File System (STG202)
AWS re:Invent 2016: Deep Dive on Amazon Elastic File System (STG202)AWS re:Invent 2016: Deep Dive on Amazon Elastic File System (STG202)
AWS re:Invent 2016: Deep Dive on Amazon Elastic File System (STG202)
 
AWS EBS
AWS EBSAWS EBS
AWS EBS
 
Getting Started with EC2, S3 and EMR
Getting Started with EC2, S3 and EMRGetting Started with EC2, S3 and EMR
Getting Started with EC2, S3 and EMR
 
Running Microsoft and Oracle Stacks on Elastic Block Store (STG303) | AWS re:...
Running Microsoft and Oracle Stacks on Elastic Block Store (STG303) | AWS re:...Running Microsoft and Oracle Stacks on Elastic Block Store (STG303) | AWS re:...
Running Microsoft and Oracle Stacks on Elastic Block Store (STG303) | AWS re:...
 
Amazon EC2 Instance Types.pptx
Amazon EC2 Instance Types.pptxAmazon EC2 Instance Types.pptx
Amazon EC2 Instance Types.pptx
 
CloudOverviewAWS.pptx
CloudOverviewAWS.pptxCloudOverviewAWS.pptx
CloudOverviewAWS.pptx
 
Amazon ec2
Amazon ec2Amazon ec2
Amazon ec2
 
Deep Dive on Amazon Elastic File System (Amazon EFS)
Deep Dive on Amazon Elastic File System (Amazon EFS)Deep Dive on Amazon Elastic File System (Amazon EFS)
Deep Dive on Amazon Elastic File System (Amazon EFS)
 
(STG402) Amazon EBS Deep Dive
(STG402) Amazon EBS Deep Dive(STG402) Amazon EBS Deep Dive
(STG402) Amazon EBS Deep Dive
 
Amazon Web Services lection 2
Amazon Web Services lection 2Amazon Web Services lection 2
Amazon Web Services lection 2
 
Basic ppt on cloud computing on amazon web
Basic ppt on cloud computing on amazon webBasic ppt on cloud computing on amazon web
Basic ppt on cloud computing on amazon web
 
Scaling Django Apps using AWS Elastic Beanstalk
Scaling Django Apps using AWS Elastic BeanstalkScaling Django Apps using AWS Elastic Beanstalk
Scaling Django Apps using AWS Elastic Beanstalk
 

More from ARYA TM

Ftp
FtpFtp
Ftp
ARYA TM
 
Dns
DnsDns
Dns
ARYA TM
 
Process management
Process managementProcess management
Process management
ARYA TM
 
Useradmin
Useradmin Useradmin
Useradmin
ARYA TM
 
Webserver
WebserverWebserver
Webserver
ARYA TM
 
Basic
BasicBasic
Basic
ARYA TM
 
Crontab
CrontabCrontab
Crontab
ARYA TM
 
package mangement
package mangementpackage mangement
package mangement
ARYA TM
 
s3
s3s3
AWS
AWSAWS
AWS
ARYA TM
 
DevOps
DevOps DevOps
DevOps
ARYA TM
 
Side final 2
Side final 2Side final 2
Side final 2
ARYA TM
 
Multi-Level audio steganography
Multi-Level audio steganographyMulti-Level audio steganography
Multi-Level audio steganography
ARYA TM
 

More from ARYA TM (13)

Ftp
FtpFtp
Ftp
 
Dns
DnsDns
Dns
 
Process management
Process managementProcess management
Process management
 
Useradmin
Useradmin Useradmin
Useradmin
 
Webserver
WebserverWebserver
Webserver
 
Basic
BasicBasic
Basic
 
Crontab
CrontabCrontab
Crontab
 
package mangement
package mangementpackage mangement
package mangement
 
s3
s3s3
s3
 
AWS
AWSAWS
AWS
 
DevOps
DevOps DevOps
DevOps
 
Side final 2
Side final 2Side final 2
Side final 2
 
Multi-Level audio steganography
Multi-Level audio steganographyMulti-Level audio steganography
Multi-Level audio steganography
 

Recently uploaded

Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdfCOLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
Kamal Acharya
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
LIGA(E)11111111111111111111111111111111111111111.ppt
LIGA(E)11111111111111111111111111111111111111111.pptLIGA(E)11111111111111111111111111111111111111111.ppt
LIGA(E)11111111111111111111111111111111111111111.ppt
ssuser9bd3ba
 
Democratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek AryaDemocratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek Arya
abh.arya
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
karthi keyan
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
gerogepatton
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
Massimo Talia
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
Pratik Pawar
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
Divya Somashekar
 
Automobile Management System Project Report.pdf
Automobile Management System Project Report.pdfAutomobile Management System Project Report.pdf
Automobile Management System Project Report.pdf
Kamal Acharya
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
AhmedHussein950959
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
JoytuBarua2
 
Halogenation process of chemical process industries
Halogenation process of chemical process industriesHalogenation process of chemical process industries
Halogenation process of chemical process industries
MuhammadTufail242431
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
MdTanvirMahtab2
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
FluxPrime1
 

Recently uploaded (20)

Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdfCOLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
 
LIGA(E)11111111111111111111111111111111111111111.ppt
LIGA(E)11111111111111111111111111111111111111111.pptLIGA(E)11111111111111111111111111111111111111111.ppt
LIGA(E)11111111111111111111111111111111111111111.ppt
 
Democratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek AryaDemocratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek Arya
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
 
Automobile Management System Project Report.pdf
Automobile Management System Project Report.pdfAutomobile Management System Project Report.pdf
Automobile Management System Project Report.pdf
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
 
Halogenation process of chemical process industries
Halogenation process of chemical process industriesHalogenation process of chemical process industries
Halogenation process of chemical process industries
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
 

EBS elastic block store

  • 2. AWS Cloud Storage Products 1. Amazon Elastic Block Store(Amazon EBS) 2. Amazon Simple Storage Service(Amazon S3) 3. Amazon Elastic File System (Amazon EFS) 4. Amazon Glacier 5. AWS Storage Gateway
  • 3. AWS EC2 Storage Options 1. Amazon Elastic Block Store(Amazon EBS) 2. Instance Store.
  • 4.
  • 5.
  • 6. ● Block-level storage volumes for use with EC2 instances. ● Use them like any block device (like a hard drive). ● EBS volumes are network-attached, and persist independently from the life of an instance ● Once mounted, the instance can interact with the volume as it would with a local drive, formatting it with a file system or installing applications on it directly. ● Storage volume sizes range from 1GB-1TB ● A volume can only be attached to one instance at a time, but many volumes can be attached to a single instance ● Suitable for apps that require a database, file system, or access to raw block level storage. Amazon Elastic Block Store(Amazon EBS)
  • 7. ● EBS volumes are placed in a specific Availability Zone, and can then be attached to instances also in that same Availability Zone. ● Each storage volume is automatically replicated within the same Availability Zone. ● EBS provides the ability to create point-in-time snapshots of volumes, which are persisted to Amazon S3. ● These snapshots can be used as the starting point for new Amazon EBS volumes, and protect data for long-term durability. ● The same snapshot can be used to instantiate as many volumes as you wish. ● These snapshots can be copied across AWS regions. Amazon Elastic Block Store(Amazon EBS)
  • 8. Different types of Elastic Block Store(Amazon EBS)
  • 9. ● Data availability - When you create an EBS volume in an Availability Zone, it is automatically replicated within that zone to prevent data loss due to failure of any single hardware component. ● Data persistence - An EBS volume is off-instance storage that can persist independently from the life of an instance. You continue to pay for the volume usage as long as the data persists. ● Data encryption ● Snapshots - Amazon EBS provides the ability to create snapshots (backups) of any EBS volume and write a copy of the data in the volume to Amazon S3, where it is stored redundantly in multiple Availability Zones. ● Flexibility - EBS volumes support live configuration changes while in production. You can modify volume type, volume size, and IOPS capacity without service interruptions. Benefits of Using EBS Volumes
  • 10. ● EBS provides the ability to back up point-in-time snapshots of your data to S3. ● Snapshots are incremental backups: only the blocks on the device that have changed since your last snapshot will be saved. ● For Example: If you have a device with 100GBs of data, but only 5GBs of data has changed since your last snapshot, only the 5 additional GBs of snapshot data will be stored back to S3 Snapshot of EBS
  • 12. 1. Open the Amazon EC2 console at https://console.aws.amazon.com/ec2/. 2. Choose Snapshots in the navigation pane. 3. Choose Create Snapshot. 4. On the Create Snapshot page, select the volume to create a snapshot for. 5. (Optional) Choose Add tags to your snapshot. For each tag, provide a tag key and a tag value. Snapshot of EBS
  • 13. 1. OpenAWS Console. 2. Click the Volume section within AWS console under the EC2 dashboard. 3. Click on Create Volume button ● The first thing that you will have to specify is the volume type. ● The next piece of information that you must provide is the size of the volume that you want to create. The volume size can be between 1GB and 16TB. ● You will also have to specify the availability zone for the volume that you are creating. This setting essentially determines where in the world the volume will physically reside. ● Then the snapshot ID. You won't have to worry about providing a snapshot ID unless you want to create the volume based on an existing snapshot. ● The last setting on this dialog box is the Encryption setting. this setting allows you to use a simple checkbox to encrypt the volume. ● Click the Create button and the volume will be created. 4. To link the volume to an instance ● right-click on the volume and choose the Attach Volume command from the shortcut menu. ● provide an instance ID for the instance. You can only attach a volume to an instance that exists in the same availability zone as the volume ● provide a device ID for the volume. ● Click the Attach button to attach the volume to the instance, Creating and attaching additional EBS volume.
  • 14. ● Log in to an instance through ssh and list the disk attached to the instance by using the command: # fdisk -l ● List the block device by using the command: # lsblk ● Check the file system on the attached volume: # file -s /dev/xvdf ● create a file system for them before we can mount them. We can do this by using: # mkfs.ext4 /dev/xvdf ● Create a mount directory where you want to mount the device: # mkdir /mountdir ● Open the /etc/fstab file and add a new line at the end of file /dev/xvdf /mountdir ext4 defaults 0 0 ● Run below-mentioned mount command to mount all of the filesystems in /etc/fstab file. # mount -a ● Check the disk’s free space by using the command below # df -h Mount EBS Volume Presented by Arya TM