Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS switch from EBS to EFS

I was thinking about switching from AWS Elastic Block Storage to AWS Elastic Filesystem (mainly for the easy scalability, also shareable storage seems nice).

At the moment I have one debian EC2 instance with one EBS volume. What's the easiest way to transfer my data from EBS to EFS?

like image 742
theCed7 Avatar asked Mar 11 '23 12:03

theCed7


1 Answers

The fastest way to achieve this is mount that EFS file system to your EC2 instance with EBS and then transfer the data from your EBS to EFS.

Follow this guide for mounting the EFS to your EC2 instance. https://docs.aws.amazon.com/efs/latest/ug/mounting-fs.html

like image 69
error2007s Avatar answered Mar 19 '23 17:03

error2007s