Currently RSA authentication Manager is not able to mount AWS EFS as NFS mount point.
Regarding AWS documentation Suse server are only required to have nfs-utils installed to be able to mount shared AWS EFS.
This can replace any kind of NFS in an AWS environement, and allow any instances in this environment to retrieve the updates from the same place.
AWS documentation about EFS requirements:
https://docs.aws.amazon.com/efs/latest/ug/mounting-fs-old.html#mounting-fs-nfs-info
And example of achievement on a Centos Server (I don't have any Suse server available):
# sudo yum install -y nfs-utils# sudo mount -t nfs 172.20.1.85:/ /mnt/rsa_updates# mount | grep /mnt/rsa_updates172.20.1.85:/ on /mnt/rsa_updates type nfs4 (rw,relatime,vers=4.1,rsize=1048576,wsize=1048576,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=172.20.0.93,local_lock=none,addr=172.20.1.85)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.