mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 05:16:00 +03:00
[GH-ISSUE #27] s3fs swift on top of radosgw #18
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#18
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 @xasima on GitHub (Mar 31, 2014).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/27
I have set up ceph 0.72.2 with radosgw (S3 / Swift - compatible API) for local S3 storage cluster.
The python-swiftclient (S3 compatible) client connects to the local node
http://hmetrics002and works well, allowing to perform upload / download / list commands for bucket 'backup'.Here is the log of try mounting this S3-compatible bucket using latest compiled s3fs-fuse. Please notice that we need to use exported variables due to having already comma symbol in the name of KEY (
metrics-backup:swift), that has been provided by ceph. So neither/etc/passwd-s3fs, nor~/passwd-s3fsfile can be used due to this reason of separator overlapping.Anyway, the mount of this local S3-compatible storage fails and I can't figure out what to change to overcome this
Here is the details on versions
Need to mention, that nothing interesting appears in syslog
@ggtakec commented on GitHub (Apr 4, 2014):
The "could not determine how to establish security credentials" message is put when s3fs can not find access key&secret.
Please check "AWSACCESSKEYID" and "AWSSECRETACCESSKEY" values.
For example, you can check it by that you specify these value set in "$HOME/.passwd-s3fs".
Thanks in advance for your help.
@ggtakec commented on GitHub (Jan 17, 2016):
I'm sorry about this Issue had been left at a long period of time.
If you have this problem yet, please try to use latest code.
("-f", "dbglevel" and "curldbg" options help to solve your problem.)
And if you found a problem, please post new issue.
Thanks in advance for your help.
@vlada-dudr commented on GitHub (May 19, 2018):
Sorry, to comment on so old issue. Just in case someone bumps into it, when having similar problem.
It looks like the above problem is caused by using sudo, which resets the environment variables. One can use sudo -E to preserve them... Cheers!