Skip to main content

Using a Namescheap domain name with AWS EC2

Most of the articles I've read show you how to do this using Route 53. However that costs $0.50/month per domain or $/6 year. Why do that when you can just use namescheaps DNS servers?

Creating an Elastic IP

An elastic IP allows you to switch EC2 instances seamlessly. If you upgrade, or setup a new instance and want to move over this is needed. Otherwise you have to repoint the DNS to the new instance manually every time.  So this is not required, but recommended.
  1. Login to AWS
  2. Click on EC2
  3. Choose Elastic IPs under Network & Security at the left
  4. Click Allocate new address and then Allocate
  5. Select the new row created
  6. Click on actions and select Associate address
  7. Choose your EC2 instance and the private IP and click associate

Configuring Namescheap DNS

If you haven't already, login to the EC2 dashboard and select your instance. Note the new Public IP and Public DNS, we'll need these. Now we have tell Namescheap's DNS servers to point to our EC2 instance.

  1. Login to Namescheap
  2. Click on the Domain List and click Manage for the domain you want to use 
  3. Now click the Advanced DNS tab 
  4. There will be two Host Records 
  5. In the Value column of the "CNAME Record" row it will say "parkingpage.namescheap.com". Paste in the Public DNS of your EC2 instance
  6. Click Add a new record and choose "A Record" 
  7. In the new  "A Record" row put "@" in the Host column and copy in the Public IP of your EC2 instance into the "Value" column.
  8. Click Save all changes

There's more info here if you need it https://www.namecheap.com/support/knowledgebase/article.aspx/319/2237/how-can-i-set-up-an-a-address-record-for-my-domain

You should be able to get to your EC2 instance using the Namescheap domain!  Now go enjoy the $6 PER DOMAIN you saved by not using Route 53!

Happy surfing!

Comments

Popular posts from this blog

Kivy vs React-Native for building cross platform mobile apps

I've built three apps now using Kivy and one with React-Native, just wanted to share my thoughts on both. Just a warning, I am strongly biased towards python and this is all based on opinion and experience and is thus worth what you pay for it. I don't claim to be an expert in either of these, just have worked with each for several months.  If something is incorrect I'd love to hear advice. Kivy Demo of one of the apps Pros: Nice to be able to run natively on the desktop WITHOUT a simulator Python is easy to work with Use (almost) any python library Very easy to create custom widgets Kivy properties and data binding just work. Way nicer than React's "state" / flux / redux whatever you want to call it (stupid?).  Native interfaces (pyjnius) and (pyobjc) Runs and feels pretty smooth Cons: Default widget toolkit looks like Android 4.4. Requiring you use your own widgets or a theming kit like KivyMD  if styling bothers you Creating dy

Control Systems in Python - Part 1 - Bode and Step Response

I hate matlab with passion, yet sadly, nearly everyone uses it.  I'm a fan of Python and open source stuff so here's a simple article on how to do some common control systems stuff in Python. First we need to make sure the environment is setup. Install IPython (or you can use any other python shell, but a unicode supported shell is preferred) Install python-control (numpy, scipy) Install sympy These should do if your on Ubuntu/debian: sudo apt - get install python - sympy python-numpy python-scipy python-matplotlib ipython Then you need to install python control, see How to download and install python-control Intro to using Sympy Open ipython and run the following: import sympy from sympy import * sympy.init_printing() s = Symbol('s') Now we can do things like define transfer functions using the symbolic variable s. We can expand the bottom using the .simplify() method and we can do something more complex like... which is really nice because it

Control Systems in Python - Part 2 - Routh Hurwitz

In my last post Control Systems in Python Part 1 , i described how to setup and use Python for doing some basic plotting of transfer functions. One of the biggest benefits of using sympy vs numeric packages like matlab/numpy/scipy is the fact that you can use symbolic variables. This post includes a function for computing the Routh Hurwitz table (Note: It does not work for row's of zeros). Lets do my control systems design homework problem together :) (Warning: I have not verified if this answer is right so please correct me if it’s not!) The Problem The problem is DP 9.11 from Dorf & Bishop’s Modern Control Systems. ISBN 0136024580. Basically we have to design a controller to compensate for a system with a time delay. The controller is: And the system is: First we approximate the exponential term with a 2nd order polynomial using pade(0.4,2) such that: Thus the approximated system is: Using frequency response methods, design the controller so that th