0
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.

EC2インスタンス内にApacheサーバーを作成

Posted at

環境
OS:Amazon Linux 2023

まずはパッケージを更新。

dnf install

一覧を確認後にy
最初からオプション -y でインストールでも可
image.png

httpdをインストール

dnf install httpd

image.png

htmlディレクトリへ移動

cd /var/www/html

image.png
HTMLファイルを作成するためにnanoエディターを起動
image.png

nano index.html

以下を入力

<html><h1>hallo world!</h1><html>

image.png
Ctrl+X y Enterで保存
次に、Apacheを起動する

systemctl start httpd

自動で起動するようにする

systemctl enable httpd

image.png

Webページが作成できたか確認する
EC2インスタンスのパブリックIPをコピーしてWebでアクセス。
表示されたら成功。
表示されず、読み込みが続いている場合は、セキュリティグループでhttpが許可されていない可能性がある。

0
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
0
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?