First time here? Check out the FAQ!
1

IP address / domain name not resolved on Amazon EC2
 

I have installed askbot experimentally on Amazon EC2, both of which I'm new to. On EC2 there's a feature called "Elastic IP" that assigns static IP to its virtual machine instance. When I start running askbot by following command WITHOUT using Elastic IP (meaning I used the IP dynamically assigned by EC2 at that moment), I can access to my askbot via browser by using WAN IP.

sudo python manage.py runserver `hostname -i`:8008

However, when I turn on Elastic IP, I can't access via browser ("not found" on browser, and no record in the web server's log).

It looks like hostname command returns LAN IP on EC2. So I tried:

sudo python manage.py runserver %WAN_IP%:8008

where %WAN_IP% is the one assigned by Elastic IP. This fails to run askbot complaining "Error: That IP address can't be assigned-to."

I want to keep using Elastic IP (since it's too cumbersome every time to change IP accordingly). Any idea would be appreciated.

The last 4 lines of my setting.py looks like this:

DOMAIN_NAME = '%WAN_IP%'

CSRF_COOKIE_NAME = '%WAN_IP%_csrf'
CSRF_COOKIE_DOMAIN = DOMAIN_NAME

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
IsaacSaito's avatar
11
IsaacSaito
updated 13 years ago, asked 13 years ago

Comments

see more comments

1 Answer

1

Looks like you need to associate the "Elastic IP" with your instance, please take a look at the Amazon documentation.

http://aws.amazon.com/articles/1346

Take a look at the section "associate IP address with a running instance".

(The way you name the csrf cookie does not matter)

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
updated 13 years ago, answered 13 years ago
link

Comments

@Evgeny thx. Once I manage to have time I'll try your suggestion and report.

IsaacSaito's avatar IsaacSaito (13 years ago)
see more comments