0

サンプルの 1 つを起動するときに、ubuntu が実行されている ec2 のマイクロ インスタンスで最新の wt をソース コンパイルしました。

1:23:15.~/progs/wt-3.2.3-rc1/examples/widgetgallery
>../../build/examples/widgetgallery/widgetgallery.wt --docroot . --http-address localhost --http-port 8080
[2012-Oct-25 01:23:16.898953] 969 - [info] "config: reading Wt config file: /etc/wt/wt_config.xml (location = '../../build/examples/widgetgallery/widgetgallery.wt')"
[2012-Oct-25 01:23:16.901653] 969 - [info] "WServer/wthttp: initializing built-in wthttpd"
[2012-Oct-25 01:23:16.902948] 969 - [info] "wthttp: started server: http://localhost:8080"

クロムのアドレスバーに入れhttp://54.243.50.12:8080/たり、入れたりしてもアクセスできません。http://54.243.50.12/それはロードし続け、それを見つけることはありません。

エラスティック IP の関連付けが機能しました。パテで54.243.50.12に接続できました。

wt の起動時に Elastic IP を指定しようとすると、wt サーバーが起動しません。

1:31:45.~/progs/wt-3.2.3-rc1/examples/widgetgallery
>../../build/examples/widgetgallery/widgetgallery.wt --docroot . --http-address 54.243.50.12 --http-port 8080
[2012-Oct-25 01:31:53.696951] 1056 - [info] "config: reading Wt config file: /etc/wt/wt_config.xml (location = '../../build/examples/widgetgallery/widgetgallery.wt')"
[2012-Oct-25 01:31:53.699035] 1056 - [info] "WServer/wthttp: initializing built-in wthttpd"
[2012-Oct-25 01:31:53.699968] 1056 - [error] "wthttp: Error occurred when binding to 54.243.50.12:8080
bind: Cannot assign requested address"
[2012-Oct-25 01:31:53.700614] 1056 - [info] "WServer/wthttp: fatal: Error (asio): bind: Cannot assign requested address"
1:31:53.~/progs/wt-3.2.3-rc1/examples/widgetgallery
>

エラスティック IP がなければ、同じ話でした。

8080 ポートが開いています。

>netstat -an | grep "LISTEN "
tcp        0      0 0.0.0.0:8080            0.0.0.0:*               LISTEN
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN
tcp        0      0 127.0.0.1:5432          0.0.0.0:*               LISTEN
tcp6       0      0 :::22                   :::*                    LISTEN

http://redmine.webtoolkit.eu/boards/2/topics/4484#message-4516にあるすべてのことを行いましたが、役に立ちませんでした。

4

1 に答える 1

2

[セキュリティ グループ] > [受信] でポートを開く必要がありました

于 2012-10-25T02:15:31.963 に答える