$ su - # yum -y install httpd
以下を実行し、アクセスできるかを確認。
# systemctl start httpd # curl localhost
自動起動に登録されているかチェック。
# systemctl list-unit-files | grep httpd httpd.service disabled
自動起動に登録。
# systemctl enable httpd.service