WhiteAB
WhiteAB

Reputation: 301

Connect a private EC2 to a FSx OpenZFS

I'm trying to connect a EC2 instance to a FSx of file system type OpenZFS, my EC2 only have private IP, I configured a route table on the subnet of the FSx, but when I try to mount

sudo mount -t nfs -o nfsvers=4.1 my-fs /fsx

from my EC2 I got this error

mount.nfs: Connection timed out

what else should I setup before can I access to my FSx?

Upvotes: 0

Views: 229

Answers (1)

Cloudlady
Cloudlady

Reputation: 773

You can try first with "showmount -e nfsserverIP" to make sure that NFS is open between the EC2 and the FSX,

if nothing is there, then you need to check the Security group and the mount command

try to do the mount command like that: sudo mount -t nfs -o vers=4.1 FSX_endpoint/fsx

Upvotes: 0

Related Questions