1

デジタルオーシャン(Ubuntu)にプレイフレームワークをインストールし、アクティベーターUIをインストールしました。UI は http:// 127.0.0.1:8888 にありますが、インターネットからこのポートにアクセスできません。つまり、自分の digitalocean サーバーの IP が 10.100.10.10 であるとします。個人の PC から http:// 10.100.10.10:8888 にアクセスできません。

ただし、サーバーでlocalhostを使用してwgetできますが、インターネットからこのページにアクセスするにはどうすればよいですか?

wget http:// 127.0.0.1:8888
--2014-04-16 16:01:38--  http:// 127.0.0.1:8888/
Connecting to 127.0.0.1:8888... connected.
HTTP request sent, awaiting response... 303 See Other
Location: /home [following]
--2014-04-16 16:01:38--  http:// 127.0.0.1:8888/home
Reusing existing connection to 127.0.0.1:8888.
HTTP request sent, awaiting response... 200 OK

sudo netstat -ntulp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      429/sshd        
tcp6       0      0 :::22                   :::*                    LISTEN      429/sshd        
tcp6       0      0 127.0.0.1:8888          :::*                    LISTEN      17498/java      
tcp6       0      0 :::28667                :::*                    LISTEN      17498/java 
4

1 に答える 1