skip to Main Content

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


  1. I have the same problem with V1.91.
    After checked out to V1.90, everything worked fine.

    git clone https://github.com/s3fs-fuse/s3fs-fuse/
    
    git checkout cd466eb
    
    ./configure 
    
    make install
    
    Amazon Simple Storage Service File System V1.90 (commit:cd466eb) with OpenSSL
    
    Login or Signup to reply.
  2. After git checkout…

    Do not forget to

    ./autogen.sh
    

    then ./configure

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search