Accessing local GAE SDK server from another computer in the network

后端 未结 4 2193
一生所求
一生所求 2021-02-07 20:14

I have development server (from google appengine sdk), running on my Ubuntu computer. I can access my site by navigating to localhost:8080

I want to access that site fro

4条回答
  •  盖世英雄少女心
    2021-02-07 20:43

    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.

提交回复
热议问题