Amazon S3 with s3fs and fuse, transport endpoint is not connected

后端 未结 7 1679
自闭症患者
自闭症患者 2021-02-05 04:16

Redhat with Fuse 2.4.8
S3FS version 1.59

From the AWS online management console i can browse the files on the S3 bucket.
When i log-in (ssh) to my /s3 folder, i

7条回答
  •  不要未来只要你来
    2021-02-05 05:03

    I don't recommend to access s3 via quick and dirty fuse drivers. S3 isn't really designed to act as a file system, see this SOF answer for a nice summary

    You would probably never dare to mount a Linux mirror website just because it holds files. This is comparable

    Let your process write files to your local fs, then sync your s3 bucket with tools like cron and s3cmd

    If you insist in using s3fs..

    sudo echo "yourawskey:yourawssecret" > /etc/passwd-s3fs
    sudo chmod 640 /etc/passwd-s3fs
    
    sudo /usr/bin/s3fs yours3bucket /yourmountpoint -ouse_cache=/tmp
    

    Verify with mount

    Source: http://code.google.com/p/s3fs/wiki/FuseOverAmazon

提交回复
热议问题