Why not login to Qiita and try out its useful features?

We'll deliver articles that match you.

You can read useful information later.

1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

『AWS 基礎からのネットワーク&サーバー構築』でエンジニア1年目がつまずいたポイント集

Last updated at Posted at 2023-02-11

概要

Amazon Web Services 基礎からのネットワーク&サーバー構築 改訂3版
を読んでいてつまずいた部分をまとめていきます。随時追加していきます。

[pp.126] WebブラウザからApacheインストール済みEC2へのhttp接続テストに失敗する

課題

Appacheをインストールし、Webサーバーとして機能するEC2に画像のハイパーリンクからアクセスしようとしたところタイムアウトでページが表示されない。image.png

原因

1.画像のハイパーリンクがhttps接続のURLだったから
2.Linuxレイヤーでのファイヤウォール(iptables)でポート番号80が解放されていなかったから

解決方法

1.URLのhttpsをhttpにしてアクセスする
2.ssh接続で以下のコマンドを入力して80番ポートを開放する

sudo iptables -A INPUT -p tcp --dport 80 --syn -m conntrack --ctstate NEW -j ACCEPT

参考資料 2023/02/12現在

EC2 インスタンスでホストされているウェブサイトに接続できないのはなぜですか?
Amazon Web Services 基礎からのネットワーク&サーバー構築 改訂3版

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?