起動時にhttpdが起動する状態か?
# systemctl is-enabled httpd.service httpdを再起動してみる # service httpd start これで表示できれば httpdの自動起動をONにする
# systemctl enable httpd.service 文法にエラーがないか確認する # apachectl configtest トラブルの元のSELinuxを無効にする
# vi /etc/selinux/config ... #SELINUX=enforcing SELINUX=disabled ... firewallの設定
# firewall-cmd --add-service=http --zone=public --permanent # firewall-cmd --reload
コメント