<dt>Installing on Fedora/CentOS/Red Hat Enterprise Linux</dt>
<dd>
<highlight>
-sudo yum install httpd
-sudo systemctl enable httpd
+sudo dnf install httpd
+
+# Start service
sudo systemctl start httpd
+
+# Stop service
+sudo systemctl stop httpd
+
+# Restart service
+sudo systemctl restart httpd
</highlight>
- <note type="warning">Newer releases of these distros use
- <code>dnf</code> rather than <code>yum</code>. See <a
- href="https://fedoraproject.org/wiki/Apache_HTTP_Server">the
+ <note type="warning">See <a
+ href="https://docs.fedoraproject.org/en-US/quick-docs/getting-started-with-apache-http-server/index.html">the
Fedora project's documentation</a> for platform-specific notes.</note>
</dd>
<dt>Installing on Ubuntu/Debian</dt>
<dd>
<highlight>
-sudo apt update
sudo apt install apache2
-sudo service apache2 start
+
+# Start service
+sudo systemctl start apache2
+
+# Stop service
+sudo systemctl stop apache2
+
+# Restart service
+sudo systemctl restart apache2
</highlight>
<note type="warning">See <a href="https://ubuntu.com/tutorials/install-and-configure-apache">Ubuntu's documentation</a> for platform-specific notes.</note>