Reputation: 4511
I am using s3fs
utility to mount a S3 bucket on an EC2 instance.
After crossing so much hurdles I am able to mount the S3 bucket.
I have few queries :
fstab
.Thanks
Upvotes: 3
Views: 1636
Reputation: 4511
Automatically mount the S3 bucket when the server boots by adding an entry to /etc/fstab using the following syntax:
s3fs#bucket-name /s3mnt fuse allow_other,_netdev,nosuid,nodev,url=https://s3.amazonaws.com 0 0
Upvotes: 3