NFS lets you share the file system on more than one server, but implementation requires some administration skills. In a traditional infrastructure environment, you may have to involve multiple teams, and it would take time to create NFS. But if you are using AWS, you can get it done in a few minutes with their EFS (Elastic File System) service. AWS EFS lets you create scalable file storage to be used on EC2. You don’t have to bother about capacity forecasting as it can scale up or down on-demand. A quick illustration was taken from the AWS page to give you an idea of how it works. Some of the EFS advantages are:

Fully managed by AWS.Low cost, pay for what you use.High available & durableAutomatically scale up or down.Scalable performance

I’ve two EC2 Ubuntu instances running, and in this tutorial, I’ll create one EFS and then mount it on both EC2 servers. Let’s get it started.

Login to the AWS consoleGo to Services and select EFS under storage (direct link)Click “Create file system.”

AWS will automatically assign an IP address in the availability zone. You can do it on the next screen if you need to change it.

Add the tag if you need to and select the performance mode between General purpose or Max I/O

Review the configuration, and if all is okay, then click “Create File System.”

It may take a few seconds, and once done, you will get a success message. You will be able to see the newly created elastic file system on the list. You have created a file system. You can mount your file system from an EC2 instance with an NFSv4.1 client installed. You can also mount your file system from an on-premises server over an AWS Direct Connect connection. This concludes you’ve created EFS and are ready to be mounted on EC2 instances.

Mounting EFS on EC2

But let’s see how it goes.

Login to both EC2 instances and install the NFS client. I have Ubuntu, so I will use the following.

Let’s create a folder where you want to mount the EFS.

Ex: /apps Mount the file system with the command given in the instructions. Ex: Note: If you are encountering any issues during mount, then refer to this troubleshooting guide, and don’t forget to check the security groups to ensure the following.

NFS port (2049) is allowed in EC2 instance inbound rulesEC2 security groups are allowed in EFS security groups

It will take a few seconds, and you will notice /apps is mounted if you do df -h command Now, you got to log in to another server where you want to have /apps available and repeat creating a folder and mounting the EFS. To verify, I mounted my EFS on another server and can see /apps are accessible on both servers. This is easy, isn’t it? I tried creating a few files, and overall, the performance looks good. AWS EFS looks promising, and if you need file system sharing across EC2 instances, give it a try, and I am sure you will like it. Are you interested in learning more about AWS? Check out this Udemy course.

How to Implement AWS EFS to Share File System between EC2  - 33How to Implement AWS EFS to Share File System between EC2  - 91How to Implement AWS EFS to Share File System between EC2  - 78How to Implement AWS EFS to Share File System between EC2  - 89How to Implement AWS EFS to Share File System between EC2  - 50How to Implement AWS EFS to Share File System between EC2  - 13How to Implement AWS EFS to Share File System between EC2  - 85How to Implement AWS EFS to Share File System between EC2  - 95How to Implement AWS EFS to Share File System between EC2  - 6How to Implement AWS EFS to Share File System between EC2  - 6How to Implement AWS EFS to Share File System between EC2  - 96How to Implement AWS EFS to Share File System between EC2  - 82How to Implement AWS EFS to Share File System between EC2  - 70How to Implement AWS EFS to Share File System between EC2  - 30How to Implement AWS EFS to Share File System between EC2  - 63How to Implement AWS EFS to Share File System between EC2  - 7How to Implement AWS EFS to Share File System between EC2  - 86How to Implement AWS EFS to Share File System between EC2  - 81How to Implement AWS EFS to Share File System between EC2  - 91How to Implement AWS EFS to Share File System between EC2  - 21How to Implement AWS EFS to Share File System between EC2  - 13How to Implement AWS EFS to Share File System between EC2  - 93How to Implement AWS EFS to Share File System between EC2  - 26How to Implement AWS EFS to Share File System between EC2  - 69How to Implement AWS EFS to Share File System between EC2  - 7How to Implement AWS EFS to Share File System between EC2  - 81How to Implement AWS EFS to Share File System between EC2  - 12How to Implement AWS EFS to Share File System between EC2  - 45How to Implement AWS EFS to Share File System between EC2  - 61How to Implement AWS EFS to Share File System between EC2  - 17