1
<RequestTime>Mon, 14 Mar 2011 10:09:28 GMT</RequestTime>
<ServerTime>2011-03-14T09:09:29Z</ServerTime></Error>

reason: The reason of this problem is that Amazon S3 allows only a small time stamp variation up to 15 minutes between the server and its requesting client (user pc). As Amazon is a big backup server of large number of users, security does matter a lot.

solution: I installed ntp on my ubuntu machine and try to sync it with s3. But still throwing same error.

How can I solved it.

My project is in Django

Geoff Appleford
  • 18,538
  • 4
  • 62
  • 85
ceasor
  • 71
  • 1
  • 1
  • 5

2 Answers2

0

Make sure you use UTC time for your requests. From the AWS docs:

Request Elements

Time stamp—Each request must contain the date and time the request was created, represented as a string in UTC.

Geoff Appleford
  • 18,538
  • 4
  • 62
  • 85
0

I had the same problem: Update your date with the following:

rdate -s ntp.xs4all.nl

substitute with whatever ntp server you require.

c4urself
  • 4,207
  • 21
  • 32