Categories: Ubuntu

How to Install Apache on Ubuntu 22.04

Apache web server is developed by “Robert McCool”. This open-source web server is responsible for accepting the HTTP requests from the users and providing the requested information in the form of web pages and files. It is mainly utilized by programmers for code testing. Apache also offers a secure file-sharing feature that permits users to store their important files in its root directory and share them with other users.

This write-up will discuss the method to install Apache on Ubuntu 22.04. So, let’s start!

How to install Apache on Ubuntu 22.04

To install Apache on Ubuntu 22.04, you must follow the below-given step-by-step instructions.

Step
Sponsored
1: Update system repositories

Press “CTRL+ALT+T” to open the terminal and run the below-given command to update system repositories:

$ sudo apt update

Step 2: Install Apache on Ubuntu 22.04

After updating system repositories, write out the following command for installing the “apache2” on your Ubuntu 22.04 system:

$ sudo apt install apache2

Wait for a few minutes as the Apache installation will take some time to complete:

Step 3: Configure Firewall

To access Apache from outside, it is required to open specific ports on your system. To do so, firstly, check the list of the applications profiles that need access:

$ sudo ufw app list

Execution of the above-given command will print out different Apache profiles on the terminal:

Next, we will utilize the “Apache Full” profile for enabling network activities on the port “80”:

Sponsored
$ sudo ufw allow ‘Apache Full’

After doing so, check the current firewall status:

$ sudo ufw status

Step 4: Check apache2 service status

Before moving towards the main configuration of Apache, we will verify the “apache2” service is currently active or not:

$ systemctl status apache2

The below-given output shows that the “apache2” service is active on our system:

You can also utilize your favorite web browser for the specified verification. To do so, open a web browser and check what the “localhost” web page beholds for you:

Navigation to the “localhost” web page indicates that Apache Web Server is working properly.

So, that’s how you install Apache on Ubuntu 22.04. Give it a try and set up virtual hosts according to your requirements.

Conclusion

To install Apache on Ubuntu 22.04, first, update your system repositories and execute the “$ sudo apt install apache2” command. After doing so, configure the firewall with the help of the “$ sudo ufw allow ‘Apache Full’” command. Then, navigate to the “localhost” page on your browser to know if Apache is working properly. This write-up discussed the method to install Apache on Ubuntu 22.04.

Ubuntu Server Admin

Recent Posts

How to Install nvidia-smi on Ubuntu or Debian Linux

In this article, we will see how to install nvidia-smi on Ubuntu or Debian Linux.…

4 hours ago

How to Install clang tool on Ubuntu or Debian Linux

In this article, we will see how to install clang tool on Ubuntu or Debian…

1 day ago

How to resolve Ubuntu 20.04 Container Signature Errors on Raspberry Pi ARM Devices

When working with Docker containers on Raspberry Pi devices, you might encounter frustrating signature verification…

2 days ago

How to fix DNS Resolution Issues with OpenVPN on Ubuntu 18.04

You’ve recently upgraded to Ubuntu 18.04 and found that your OpenVPN connection no longer resolves…

2 days ago

How to Fix Ubuntu 18.04 System Monitor Launch Issues

Have you ever tried to open System Monitor on your Ubuntu 18.04 system only to…

3 days ago

What is System Hardening? Essential Checklists from OS to Applications

System hardening means locking down a system and reducing its attack surface: removing unnecessary software…

3 days ago