I created a bucket on Amazon S3 and went to the url (which is a url I need to put in an initializer in my rails app)

https://mtest73.s3.amazonaws.com/

and got this message

This XML file does not appear to have any style information associated with it. The document tree is shown below.
<Error>
<Code>NoSuchBucket</Code>
<Message>The specified bucket does not exist</Message>
<BucketName>mtest73</BucketName>
<RequestId>9FBDCC50303F4306</RequestId>
<HostId>
owG6PSSjvcS7QZwEMKzTjMnYiwclXkRG7QGIF/Ly+jc8mHnmbvWHXqitDzfjnzgM
</HostId>
</Error>

However, in the Amazon console i've even uploaded a small file to this bucket. enter image description here

Is there a reason for this? I thought it might be saying the bucket doesn't exist due to security reasons, but if there's something I've done wrong it might be why I can't get my Rails application to work...

link|improve this question

The S3 console says "m73test" and your URL said "mtest73." – John Flatness Jan 15 at 1:46
mtest73 or m73test? Could that be the problem? – pjotr Jan 15 at 1:46
that's the problem. thanks – Michael Jan 15 at 2:02
feedback

1 Answer

@JohnFlatness and @pjotr pointed out, I wrote the wrong url

https://mtest73.s3.amazonaws.com/

It should have been

https://73mtest.s3.amazonaws.com/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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