Enabling automatic mounting on EC2 Linux or Mac instances using NFS
Using NFS without the EFS mount helper to update the Amazon 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/fstabfile in an editor.-
To automatically mount a file system using NFS instead of the EFS mount helper, add the following line to the
/etc/fstabfile.Replace
file_system_idwith the ID of the file system you are mounting.Replace
aws-regionwith the Amazon Web Services Region that the file system in, such asus-east-1.Replace
mount_pointwith the file system's mount point.
file_system_id.efs.aws-region.amazonaws.com:/mount_pointnfs4 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 EFS file system. You can get this ID from the console or programmatically from the CLI or an Amazon 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 |