PRACTICAL
1. Creating and accessing EFS
Create a sg (efs) -> add nfs as inbound rule -> goto efs -> create a file system -> select the default vpc -> remove all sg and add efs as the sg -> next ->create file system -> launch an redhat instance under efs sg -> login
$sudo su
#yum update -y && yum install -y nfs-utils
#systemctl restart nfs-server
#systemctl enable nfs-server
#mkdir /efs
#mount -t nfs4:/ /efs (check the subnet of instance, then in efs check the ip of corresponding subnet)
#df -h
Last updated
Was this helpful?