mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #430] After success of s3 bucket mount, fail to write file into mounted folder. #230
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#230
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 @choruspapa on GitHub (Jun 7, 2016).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/430
I installed s3fs on ubuntu 14.
In foreground mode, s3fs mounts s3 bucket to some path.
It seems to be mounted successfully.
After that, I wrote a file into mounted folder.
I got error message.
And console output messages of s3fs are pasted below.
let me know how to fix it, plz.
thanks in advance.
@choruspapa commented on GitHub (Jun 8, 2016):
Additionally, attach more detail log messages.
@sqlbot commented on GitHub (Jun 8, 2016):
-o url=http://s3- http://s3-website.ap-northeast-2.amazonaws.com/
website.ap http://s3-website.ap-northeast-2.amazonaws.com/-northeast-2.
http://s3-website.ap-northeast-2.amazonaws.com/amazonaws.com
http://s3-website.ap-northeast-2.amazonaws.com/ is not correct. This is
a web site endpoint, rather than a REST endpoint, which only supports GET
requests, so 405 Method Not Allowed is actually the expected response.
Remove "s3-website." from the beginning.
On Jun 8, 2016 1:27 AM, "Yongho Hwang" notifications@github.com wrote:
@choruspapa commented on GitHub (Jun 13, 2016):
I'll share the result of @sqlbot 's recommand.
How can I get a rest api endpoint for s3 bucket?
@gaul commented on GitHub (Jun 13, 2016):
Which version of s3fs do you use? ap-northeast-2 requires use of signature v4 which only newer s3fs versions support. I successfully mounted such a bucket via:
@choruspapa commented on GitHub (Jun 13, 2016):
Would you tell me which version of s3fs support v4?
@gaul commented on GitHub (Jun 13, 2016):
Signature v4 support merged in 1.79 but but I recommend using the latest 1.80.
@choruspapa commented on GitHub (Jun 13, 2016):
It works. nice!!
Thank you. @andrewgaul.