mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 21:35:58 +03:00
[GH-ISSUE #1659] Unable to mount S3 bucket #867
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#867
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 @uneewk on GitHub (May 17, 2021).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/1659
Version of s3fs being used (s3fs --version)
Amazon Simple Storage Service File System V1.82(commit:unknown) with GnuTLS(gcrypt)
Version of fuse being used (pkg-config --modversion fuse, rpm -qi fuse, dpkg -s fuse)
Package: fuse
Status: install ok installed
Priority: optional
Section: utils
Installed-Size: 104
Maintainer: Ubuntu Developers ubuntu-devel-discuss@lists.ubuntu.com
Architecture: amd64
Version: 2.9.7-1ubuntu1
Depends: libc6 (>= 2.14), libfuse2 (= 2.9.7-1ubuntu1), adduser, mount (>= 2.19.1), sed (>= 4)
Conffiles:
/etc/fuse.conf 298587592c8444196833f317def414f2
Description: Filesystem in Userspace
Filesystem in Userspace (FUSE) is a simple interface for userspace programs to
export a virtual filesystem to the Linux kernel. It also aims to provide a
secure method for non privileged users to create and mount their own filesystem
implementations.
Kernel information (uname -r)
5.4.0-72-generic
GNU/Linux Distribution, if applicable (cat /etc/os-release)
NAME="elementary OS"
VERSION="5.1.7 Hera"
ID=elementary
ID_LIKE=ubuntu
PRETTY_NAME="elementary OS 5.1.7 Hera"
LOGO=distributor-logo
VERSION_ID="5.1.7"
HOME_URL="https://elementary.io/"
SUPPORT_URL="https://elementary.io/support"
BUG_REPORT_URL="https://github.com/elementary/os/issues/new"
PRIVACY_POLICY_URL="https://elementary.io/privacy-policy"
VERSION_CODENAME=hera
UBUNTU_CODENAME=bionic
s3fs command line used, if applicable
caspian@~$ s3fs personal.bucket.com:/mypath es3/ -o dbglevel=debug -f -o curldbg
[CRT] s3fs.cpp:set_s3fs_log_level(257): change debug level from [CRT] to [DBG]
[INF] s3fs.cpp:set_mountpoint_attribute(4193): PROC(uid=1000, gid=1000) - MountPoint(uid=1000, gid=1000, mode=40775)
s3fs: could not determine how to establish security credentials.
Details about issue
I have a ~/.aws/credentials file and I am hoping s3fs to use it. I already looked at /var/log/syslog, there was nothing for s3fs. I'm not sure where else to look. Thanks for your help.
@CarstenGrohmann commented on GitHub (Jun 26, 2021):
s3fs supports using credentials from
${HOME}/.aws/credentialsas well as/etc/passwd-s3fsand$HOME/.passwd-s3fs.~/.aws/credentialssupports different profiles. The profile "default" is used by s3fs if no other profile name is choosen with-o profile <other profile>.Example:
Your s3fs command line doesn't contain
-o profile <other profile>. Therefore, please check if you have a "default" profile in your~/.aws/credentialslike show in the example above, please.@rbavery commented on GitHub (Mar 9, 2022):
I have a credential file with a default profile as shown above but I still get this error
s3fs: could not determine how to establish security credentials.@goetzc commented on GitHub (Nov 18, 2024):
Could the
-o profileoption use the value of theAWS_PROFILEenvironment variable, that is also used by the AWS CLI? This behavior would feel more intuitive.