Creating an Apache installation for local testing
Learn how to install the Apache web server locally for testing and development. Just follow our easy step-by-step instructions to get started!
This article describes how to create an Apache web server installation that you can use for local testing.
Important
The following procedures assume that you have already created a virtual machine running AlmaLinux on your local computer. For information about how to do this, please see this article.
Installing Apache
Apache is a popular open-source web server. It is used on many hosting.com servers, and is a good choice for your own testing environments.
To install Apache on your virtual machine, follow these steps:
-
Start the virtual machine, if you haven't already.
-
Log in to the virtual machine as the root user.
-
At the command prompt, type the following command to install Apache:
yum install httpd
Tip
httpd is short for "HTTP daemon" -- don't worry, you are installing Apache.
-
At the Is this ok prompt, type
y
and then press Enter. The installation process begins. -
After installation completes, type the following command to start Apache:
systemctl start httpd
-
To confirm Apache is running, type the following command:
systemctl status httpd
You should see Active: active (running) in the output.
-
To make Apache start automatically on system boot, type the following command:
systemctl enable httpd
-
You are now ready to configure the web server. For information about how to do this, you can view the official online Apache documentation at https://httpd.apache.org/docs.
Related Articles
Updated 3 days ago