1
1

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 3 years have passed since last update.

Apacheのインストール・起動

Last updated at Posted at 2020-04-11

#Apache

Apache(アパッチ)とは世界中で使用されているWebサーバーソフトウェア(HTTPサーバー)のこと

以下ではAWSのLinuxサーバーにApatchをインストールしてみた

##Apacheのインストールコマンド
sudo yum -y install httpd

##Apacheの起動コマンド
sudo systemctl start httpd.service

##Apacheの起動確認コマンド
sudo systemctl status httpd.service

正常に起動されていると以下が表示される

スクリーンショット 2020-04-11 23.28.38.png

##全てのプロセスをCPUやメモリの使用率付きで表示する
ps -axu

ps:プロセス ax:全て u:CPUやメモリの使用率
以下のようにappacheの項目があればOK
スクリーンショット 2020-04-11 23.36.03.png

サーバー起動時にApacheの自動起動設定コマンド

sudo systemctl enable httpd.service

以下のように表示されればOK
スクリーンショット 2020-04-11 23.42.26.png

Apacheの自動起動設定確認コマンド

sudo systemctl is-enabled httpd.service

enabledと表示されていればば、設定されている。

#最後に
Apacheのインストール後、その他ネットワークの設定に問題なければApacheのホームページが表示できるはずです。
スクリーンショット 2020-04-12 0.03.23.png

次回はWordpressをインストールし、
DBの設定・Lamdaでのサーバー処理の自動化等を行う予定です。

1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?