Setting up Apache and HTTPD Guide - Bobleoble/tech-journal GitHub Wiki

Host Machine

  • Run dhclient for IP Address
  • Type ip addr to check for IP
  • Install Apache with yum -y install httpd
  • Allow port 80 for HTTP with firewall-cmd --permanent --add-port=80/tcp
  • firewall-cmd --reload
  • Verify 80 is open with firewall-cmd --query-port=80/tcp
  • Start httpd with systemctl start httpd
  • Visit IP Address of Host Machine to verify Apache is working

HTML Page Creation Guide