Reputation: 46
what is the simplest way to share a physical folder, among all ec2 instances,
e.g. /tmp/images/ folder I want to have this folder some where and be accessible to all my instances
Upvotes: 0
Views: 58
Reputation: 19548
You have a couple of options.
Using S3 is most common choice for a situation like this. But it depends what you are doing with the data. Since its not a block device, it wont work in certain use cases.
The other option is to use NFS. You can set up an NFS share on one of your instances and mount it on all your other instances. Keep in mind that you need to keep security locked down on the NFS ports
Upvotes: 2