How to Install Apache Web Server on Amazon Linux 2
- Mohammad Abu Mattar
- Cloud Computing
- 24 Oct, 2022
- 02 Mins read
Introduction
In this tutorial, we will learn how to install Apache web server on Amazon Linux 2. We will also learn how to configure Apache web server to run simple HTML web page.
Prerequisites
To follow this tutorial, you will need:
- An Amazon Linux 2 EC2 instance.
- A user with sudo privileges.
Install Apache Web Server and run simple HTML web page
Step 1: Install Apache Web Server
Before we start, we need to update the package list and upgrade the installed packages:
Now, we can install Apache web server:
Step 2: Start Apache Web Server
Now, we can start Apache web server:
- Start Apache Server
- Configure Apache to run on system boot
Step 3: Configure Firewall
Now, we need to configure the firewall to allow HTTP traffic:
Step 4: Create a Simple HTML Web Page
Before we can test Apache web server, we need to change the permissions of the /var/www/html
directory:
Now, we can create a simple HTML web page:
Step 5: Test Apache Web Server
Now, we can test Apache web server by opening the public IP address of our Amazon Linux 2 EC2 instance in a web browser:
Conclusion
In this tutorial, we learned how to install Apache web server on Amazon Linux 2. We also learned how to configure Apache web server to run simple HTML web page.