Enabling automatic mounting on EC2 Linux or Mac instances using NFS
Using NFS without the EFS mount helper to update the EC2
/etc/fstab
file, for EC2 Linux and Mac instances.
To update the /etc/fstab
file on your EC2 instance
-
Connect to your EC2 instance. For more information, see Connect to your EC2 instance in the Amazon EC2 User Guide.
Open the
/etc/fstab
file in an editor.-
To automatically mount a file system using NFS instead of the EFS mount helper, add the following line to the
/etc/fstab
file.Replace
file_system_id
with the ID of the file system you are mounting.Replace
aws-region
with the AWS Region that the file system in, such asus-east-1
.Replace
mount_point
with the file system's mount point.
file_system_id
.efs.aws-region
.amazonaws.com:/mount_point
nfs4 nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2,noresvport,_netdev 0 0
The line of code you added to the /etc/fstab
file does the
following.
Field | Description |
---|---|
|
The ID for your Amazon EFS file system. You can get this ID from the console or programmatically from the CLI or an AWS SDK. |
|
The mount point for the EFS file system on your EC2 instance. |
|
Specifies the file system type. |
|
The comma-separated list of mount options for the file system:
|
|
Specifies the |
|
Tells the |