mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 21:35:58 +03:00
[GH-ISSUE #2458] Cannot mount a bucket on ubuntu 22 #1213
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#1213
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tobiascapin on GitHub (May 24, 2024).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/2458
I tried to mount a s3 bucket created in eu-south-1 region in my linux ubuntu server 22.
This is my command:
s3fs bkt-storage:/storage /mnt/s3storage/ -o passwd_file=/etc/aws/.passwd-s3fs -dMy /etc/aws/.passwd-s3fs is formed like this:
PUBLICKEY:SECRETKEYWhen i run this command with root user, I don't get any response, but looking into /var/log/syslog I find this errors:
I tried to add
-o url=https://s3.eu-south-1.amazonaws.comoption, with no luck.Do you know how to solve?
@brijeshvp commented on GitHub (Jul 2, 2024):
facing same issue
@tobiascapin commented on GitHub (Jul 2, 2024):
I solved adding two options:
endpoint=eu-south-1andurl=https://s3.eu-south-1.amazonaws.com.Finally my fstab line is this:
myname /mnt/s3-myname fuse.s3fs _netdev,allow_other,passwd_file=/etc/aws/passwd-s3fs,endpoint=eu-south-1,url=https://s3.eu-south-1.amazonaws.com 0 0