开发者

s3-put fails to send file

开发者 https://www.devze.com 2022-12-19 17:32 出处:网络
I\'m trying to send a file to amazon s3 using the s3-bash scripts. Using this command: ./s3-put -T ./test2 -k <mykey> -s ./<mysecretkeyfile> /mybucketname

I'm trying to send a file to amazon s3 using the s3-bash scripts.

Using this command:

./s3-put -T ./test2 -k <mykey> -s ./<mysecretkeyfile> /mybucketname

leads to:

<?xml version="1.0" encoding="UTF-8"?>
<Error><Code>MalformedXML开发者_高级运维</Code><Message>The XML you provided was not well-formed or did not validate against our published schema</Message><RequestId>xxx</RequestId><HostId>xxx</HostId></Error>

Any idea? I just want to send a file via bash.


I solved it: the bucket name needs to have the filename attached, like this:

/mybucketname/myfile

So the complete command could look like:

./s3-put -T ./test2 -k <mykey> -s ./<mysecretkeyfile> /mybucketname/myfile


In my case the issue was with extension of file, my file was extension-less. Once i given the extension (in my case it was .zip), file uploaded successfully.

0

精彩评论

暂无评论...
验证码 换一张
取 消