yumでインストールできる Apache httpd の確認
# yum info httpd
Loaded plugins: priorities, update-motd, upgrade-helper
Available Packages
Name : httpd
Arch : x86_64
Version : 2.2.34
Release : 1.16.amzn1
Size : 1.2 M
Repo : amzn-main/latest
Summary : Apache HTTP Server
URL : http://httpd.apache.org/
License : ASL 2.0
Description : The Apache HTTP Server is a powerful, efficient, and extensible
: web server.
Apache httpd のバージョン 2.2.34 が利用できるのでこれを使用してインストール
$ sudo yum -y install httpd
最後に「Complete!」と表示され無事にインストールが終了したのでインストールされたApacheのバージョンを確認
$ httpd -version
Server version: Apache/2.2.34 (Unix)
Server built: Nov 1 2017 18:47:16
忘れないうちに自動起動の設定
$ sudo chkconfig httpd on
httpd が有効になっているかの確認
実行レベル 2、3、4、5 が on になってればOK
$ chkconfig --list httpd
httpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
起動・停止・確認
$ sudo service httpd start ←起動
$ sudo service httpd stop ←停止
$ sudo service httpd status ←確認