Questions tagged [s3fs]

s3fs is FUSE-based filesystem that stores files in AWS S3.

s3fs is FUSE-based filesystem that stores files/data in AWS S3.

65 questions
4
votes
4 answers

s3fs Input/output error

I'm trying to set up a backup system with s3fs and the Amazon S3 service. I followed this this guide and this guide. Tailing /var/log/messages I get: Aug 28 13:37:46 server s3fs:###response=403 I already tried creating the authentication file…
shadow_of__soul
  • 376
  • 1
  • 6
  • 16
3
votes
1 answer

How to share a EFS/s3 with code in a auto scaling group?

the main problem is: Infrastructure: Autoscaling (min 1 - max 3) RDS ELB elasticache (redis) elasticsearch I want to share a volume (EFS / S3) with the code of my application; The size of it is about 1.3 Gb. With EFS: The first attempt I tried to…
sysalam0
  • 71
  • 1
  • 5
3
votes
1 answer

Automatically mounting S3 bucket using s3fs on Amazon CentOS

I have tried all the answers provided in similar questions but none is helpful. I installed S3 Fuse so that I can mount S3 bucket. After the installation, I performed the following the steps: I created the mount point for S3 bucket; mkdir –p…
MyShade
  • 33
  • 1
  • 3
3
votes
1 answer

How to use SAMBA on an Amazon S3 mounted directory on Ubuntu VM

I had successfully configured a SAMBA share on /home/myusername on an Ubuntu 17.10 VM. I then used s3fs-fuse to mount an S3 bucket on that exact directory, i.e. /home/myusername. It worked too, any files I created in this directory were created in…
Tanmay Vij
  • 161
  • 7
3
votes
1 answer

Custom file/folder permissions with S3FS?

I have setup an SFTP server using OpenSSH. The home directory for users is /sftp/%user. I'm mounting an S3 bucket at /sftp using S3FS. The problem is that S3FS cascades user permissions down through it's directory structure, meaning: I can…
T. Brian Jones
  • 927
  • 4
  • 17
  • 29
3
votes
1 answer

Why is mount -a not mounting fuse drive properly when executed remotely (via Fabric)?

This is a weird bug and I'm not sure where it's coming from. Here's a quick run down of what I'm doing. I'm trying to mount a FUSE drive to an Amazon EC2 instance running Ubuntu 10.10 using s3fs (FUSE over Amazon). s3fs is compiled from source…
Jim D
  • 501
  • 1
  • 5
  • 12
3
votes
1 answer

s3fs or EBS through nfs?

Which one is better? I need to store a lot of static files ... and I wonder which one is better, cheaper and faster.
naiad
  • 201
  • 2
  • 7
3
votes
3 answers

s3fs: how to force remount on errors?

I use s3fs 1.33 on Ubuntu 9.10. Regularily it gives me errors like this: rsync: writefd_unbuffered failed to write 4 bytes to socket [sender]: Broken pipe (32) rsync: close failed on "/mnt/s3/mybucket/filename": Software caused connection abort…
Alexander Gladysh
  • 2,423
  • 8
  • 31
  • 49
2
votes
1 answer

Amazon s3 bucket mount point getting unmounted automatically

I use s3fs on aws ubuntu instance to mount s3 bucket. Following is the command I used to mount the bucket. sudo fusermount -u /s3/project1 sudo s3fs -o allow_other project1 /s3/project1 The machines are never getting restarted. But frequently…
sugunan
  • 141
  • 1
  • 5
2
votes
1 answer

Use S3FS Mount As HTTP Server Document Root

My proposed setup: An EC2 server running Apache or nginx. An S3 Bucket in the same region/availability zone mounted with S3FS. The Apache or nginx document root set to the S3FS mount. My question: Is this a tenable and scalable solution for…
xendi
  • 414
  • 5
  • 10
  • 22
2
votes
0 answers

rpc.mountd[pid]: /xxx and /yyy have same filehandle for host, using first

I have an S3 bucket mounted using s3fs-fuse at /yyy and a normal drive mounted at /xxx. I am exporting both with NFS however when a client attempts mount, I see the following error: rpc.mountd[pid]: /xxx and /yyy have same filehandle for…
Alex Rothberg
  • 481
  • 2
  • 4
  • 8
2
votes
2 answers

Can a S3 mount be used as the document root for Apache?

Has anyone been successful in having their DocumentRoot reside on an S3 mount (using s3fs)? I currently have a mounted bucket at /mnt/s3. I can read and write files to it no problem. In my httpd.conf I have DocumentRoot "/mnt/s3". When I restart…
Hesse
  • 21
  • 1
  • 2
2
votes
0 answers

s3fs-mounted S3 bucket shows bad filesizes

Background: I have an Amazon S3 bucket with data uploaded using the AWS web interface. Now I need to give permissions-based access to paths within my buckets to FTP users. To do this, I'm running vsftpd and s3fs on a fresh Amazon EC2 instance.…
jonaz
  • 131
  • 2
2
votes
2 answers

s3fs changing s3 permissions?

My developer believes that s3fs is changing my bucket's permissions. Is this possible? I want my bucket to be public, but it keeps reverting back to private. Here's my fstab. s3fs#production /mnt/production fuse…
Magd
  • 169
  • 3
  • 9
2
votes
1 answer

Writing to an s3 mounted directory

hopefully someone can advise. I've recently mounted an s3 bucket to a directory /s3 on my ubuntu amazon ec2 instance -following: http://code.google.com/p/s3fs/wiki/FuseOverAmazon. This was set up in order to store a file directory of Drupal. The…
williamsowen
  • 1,167
  • 3
  • 16
  • 25