Accessing local GAE SDK server from another computer in the network

最后都变了- 提交于 2019-12-03 05:45:38

If you're using Python:

sudo python2.5 dev_appserver.py -a 192.168.1.103 -p 8080 myapp/

Edit:
The development server also happens to listen to port 8080 by default, so that 2nd argument is redundant.

The first check is indeed the ping check

ping 192.168.1.103

As said by Andre Holzner, I too feel the same possibility. You can easily check this by opening file /etc/hosts. sudo vi /etc/hosts.

If you see following entries,

127.0.0.1 localhost localhost.localdomain

192.168.1.103

then simply comment the 1st line and restart your web application.

Check if now you can connect it through other machine.

for an appengine specific solution see this: http://thecoderscanon.com/?p=115.

Just add the Extra Flags: "-a 0.0.0.0"

Make sure that you have the port 8080 open in Ubuntu's firewall settings.

This is most likely a firewall issue on your linux box.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!