Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Boto s3 error. BucketAlreadyOwnedByYou

Why do I get this error with s3 and boto?

<Error><Code>BucketAlreadyOwnedByYou</Code><Message>Your previous request to create the named bucket succeeded and you already own it.</Message><BucketName>rtbhui</BucketName><RequestId>84115D3E9513F3C9</RequestId><HostId>+3TxrA34xHcSx0ecOD3pseRnE+LwUv3Ax1Pvp3PFoE8tHfOcn5BXyihc9V/oJx2g</HostId></Error>

s3 = boto.connect_s3(parms['AWS_ACCESS_KEY_ID'], parms['AWS_SECRET_ACCESS_KEY'])
bucket = s3.create_bucket(bucket_name)
k = Key(bucket) #bucket is global
k.key = bucket_path_and_key #'test/test/test'
like image 254
Tampa Avatar asked Feb 20 '23 16:02

Tampa


1 Answers

BucketAlreadyOwnedByYou errors will only be returned outside of the US Standard region. Inside the US Standard region (i.e. when you don't specify a location constraint), attempting to recreate a bucket you already own will succeed.

Source http://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html

like image 70
damaex Avatar answered Mar 08 '23 18:03

damaex