Paul Taylor
Paul Taylor

Reputation: 13190

Cannot get Route53 domain to point to Elastic Beanstalk

This is what I did:

But still if I enter http://search.jthinkws.com in a web-browser it is not found

Have I done this right ?

* Update *

Just searched on whois and see name servers are still set to

do I have to do something to get them changed to the Amazon ones ?

* Update *

Changes to nameservers made and propogated yet still search.jthinkws.com does not work, why would this be ?

Upvotes: 0

Views: 1298

Answers (3)

Santhosh S
Santhosh S

Reputation: 1159

After you create the hosted zone for jthinkws.com. Go to Record sets, there will be an entry for type NS. You will need to copy these name servers endpoints and update it in the DNS provider (fasthosts) for the domain jthinkws.com

-Santhosh

Upvotes: 0

jsemig
jsemig

Reputation: 301

You need to update the nameserver records on fasthost to match the ones gives from Route53. When I run "dig jthinkws.com any" in my bash shell I get the following responds:

; <<>> DiG 9.8.3-P1 <<>> jthinkws.com any
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 24700
;; flags: qr rd ra; QUERY: 1, ANSWER: 5, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;jthinkws.com.          IN  ANY

;; ANSWER SECTION:
jthinkws.com.       3599    IN  SOA ns1.livedns.co.uk. admin.jthinkws.com. 1404204424   10800 3600 604800 3600
jthinkws.com.       3599    IN  NS  ns2.livedns.co.uk.
jthinkws.com.       3599    IN  NS  ns3.livedns.co.uk.
jthinkws.com.       3599    IN  A   213.171.195.105
jthinkws.com.       3599    IN  NS  ns1.livedns.co.uk.

;; Query time: 315 msec
;; SERVER: 8.8.8.8#53(8.8.8.8)
;; WHEN: Wed Jul  2 14:58:42 2014
;; MSG SIZE  rcvd: 155

The NS records must be AWS records for Route53 to work. Check out this getting started guide.

Upvotes: 4

Naveen Vijay
Naveen Vijay

Reputation: 16482

Yes you need use the Amazon Ones for name servers; That is the connection you would establish with your domain name and Route53.

Upvotes: 1

Related Questions