quick-docs/modules/ROOT/pages/_partials/proc_installing-httpd.adoc
2018-07-27 18:53:34 +02:00

27 lines
640 B
Text

[id='installing-httpd']
= Installing HTTPD
This procedure describes the steps to install Apache *HTTPD* on Fedora.
. Install *HTTPD* packages.
+
----
# dnf install httpd -y
----
. Start the *HTTPD* service.
+
----
# systemctl start httpd.service
----
[NOTE]
====
To enable auto start of *HTTPD* service at boot, execute the following command:
----
# systemctl enable httpd.service
----
====
Navigate to link:http://localhost[http://localhost] to access the Apache test page. You may not be able to access the server from any other host. To access the server from other hosts, see link:#opening-firewall-ports[Opening firewall ports].