リンク内容
このサイトを参考にしました。
linux
1docker run -d --name nginx-container -p 8181:80 nginx
以上のコマンドを打ち、firewall等の設定をすると、http://<作成したインスタンスのIPアドレス>:8181/と入力すると、nginxのページが表示されるそうですが、表示されません。
google chromeで開きたいです。
リンク内容
このリンクを参考に、ipアドレスを取得しました。
確認したことーーーーーーーーーーーーーーーーーーーーーーー
linux
1docker exec -it <起動したコンテナ名> bash 2curl http://localhost:8181/ 3curl: (7) Failed to connect to localhost port 8181: Connection refused 4curl http://127.17.0.2:8181/ 5curl: (7) Failed to connect to 127.17.0.2 port 8181: Connection refused 6 7http://localhost:80/ または、 http://127.17.0.2:8181とすると、Thank you for using nginx.等が表示されます。 8 9shell出ない場合は、 10# curl http://localhost:8181/ 11# curl http://172.17.0.2:80/ 12# curl http://localhost:80 13以上の3つは、nginxのページが表示されます。 14 15 curl http://127.17.0.2:8181/ 16curl: (7) Failed to connect to 127.17.0.2 port 8181: Connection refused 17
firewallで、8181を追加。さくらのvpsを使用しているので、コントロールパネルでパケットフィルタ8181を追加。
firewallのreloadも行いました。
どこを確認すれば、分かっていない状態なので、ご教授お願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/26 08:17
2021/01/26 08:23
2021/01/26 08:25
2021/01/26 08:25
2021/01/26 08:30
2021/01/26 08:40
2021/01/26 08:43