I am using s3fs to mount a bucket into an EC2 instance. The mount is successful but strangely not all folders present in my bucket are visible within the mount in the EC2 instance. The data within the S3 bucket was copied from another EC2 instance.
pkg-config --modversion fuse
2.9.2
s3fs --version
Amazon Simple Storage Service File System V1.91 (commit:9a42822) with OpenSSL
The command I have used to mount the bucket:
s3fs -o iam_role='MyS3Role' -o url='https://s3.us-east-1.amazonaws.com' -o allow_other -o nonempty -o use_path_request_style -o use_cache=/tmp -o umask=0002 mybucket /usr/test
2
Answers
I have the same problem with V1.91.
After checked out to V1.90, everything worked fine.
After git checkout…
Do not forget to
then
./configure