Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I use s3cmd to pull down files (of not unreasonable size - less than 100 megabytes) I occasionally see this error: WARNING: MD5 signatures do not match: computed=BLAH, received="NOT-BLAH"

Googling suggests that this may be caused by the way S3 segments files. Others have said to ignore it.

Does anybody know why this happens and what the right thing to do is?

Thank you for your time, -- Henry

share|improve this question

2 Answers

up vote 5 down vote accepted

Looking into this deeper, it seems as though s3cmd is reading the wrong md5 sum from Amazon. It looks as though s3cmd is getting its sum from the ETAG field. Comparing the actual data of the object that was PUT with the object that was GET'ed the contents are identical and this error can be safely ignored.

share|improve this answer
I got this message and ran a diff against the original file I uploaded and they match, so definitely some false positives from s3cmd – Nicholas Tolley Cottrell Dec 29 '12 at 12:34

I saw reports about an hour ago that S3 is currently having exactly this problem, e.g. this tweet:

RT @drags: @ylastic S3 returning incorrect md5s to s3cmd as well. Never seen an md5 with a '-' in it, until AWS. #AWS #S3

Though the AWS Status Page reports no issue, I expect this is a transient problem. Try again soon :-)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.