I have 3 iMacs and a Windows machine on my home network, all connected via an Airport Extreme router. I'm developing Google App Engine applications locally on one of the iMacs, and can view applications using http://localhost:8080 (or whatever port I choose).

How do I connect to those applications from other iMacs and Windows machines in my network? I've located the IP for the iMac hosting Google App Engine: 10.0.1.7. But when I try http://10.0.1.7:8080 from another machine it will not load the page.

link|improve this question
Please read our FAQs next time. – Chopper3 Feb 9 '11 at 20:58
Can you link this to my account? – Arch Stanton Feb 9 '11 at 21:40
feedback

migrated from serverfault.com Feb 9 '11 at 20:58

This question came from our site for system administrators and desktop support professionals.

1 Answer

See docs for the --address option here: http://code.google.com/appengine/docs/python/tools/devserver.html

Basically:

  1. On the machine running appengine: Open System Preferences > Network and write down the IP (eg. 1.2.3.4)
  2. Use this IP with the address option, ie. "--address 1.2.3.4", when you launch the dev appserver.
  3. Visit http://1.2.3.4:8080/ from any machine in your local network.
link|improve this answer
Thank you! you saved me lots of time ! – Konoplianko Mar 29 '11 at 22:59
Sorry I did not see this in time to mark it as the answer. It worked! – Arch Stanton Apr 16 '11 at 3:41
feedback

Your Answer

 
or
required, but never shown