Install Apache on Ubuntu 20.04 LTS - TechvBlogs

Install Apache on Ubuntu 20.04 LTS

The Apache HTTP Web Server (Apache) is an open-source web application for deploying web servers. This guide explains how to install and configure an Apache on Ubuntu 20.04 LTS.


Suresh Ramani - Author - TechvBlogs
Suresh Ramani
 

3 years ago

TechvBlogs - Google News

What is Apache?

Apache HTTP server is the most popular web server in the world. It is a free, open-source, and cross-platform HTTP server providing powerful features which can be extended by a wide variety of modules.

This tutorial explains how to install and manage the Apache Web server on Ubuntu 20.04.

How to install Apache on Ubuntu

Before installing new software, it's a good idea to refresh your local software package database to make sure you are accessing the latest versions. This helps cut down on the time it takes to update after installation, and it also helps prevent zero-day exploits against outdated software.

Open a terminal and run this command:

sudo apt-get update

1. Install Apache

Run this command to install the apache package on ubuntu:

sudo apt-get install apache2

The system prompts for confirmation - do so, and allow the system to complete the installation.

Install Apache on Ubuntu 20.04 LTS - Ubuntu - TechvBlogs

2. Verify Apache Installation

For Verify Apache was installed correctly, open a web browser and type in the address bar http://server_ip_address

After opening this URL you can see the apache2 default page as in the image below:

Install Apache on Ubuntu 20.04 LTS - Ubuntu - TechvBlogs

3. Configure Your Firewall

Check the available ufw application profiles:

sudo ufw app list

Install Apache on Ubuntu 20.04 LTS - Ubuntu - TechvBlogs

Let’s enable the most restrictive profile that will still allow the traffic you’ve configured, permitting traffic on port 80:

sudo ufw allow 'Apache'

Install Apache on Ubuntu 20.04 LTS - Ubuntu - TechvBlogs

Verify the change:

sudo ufw status

If you have other applications or services to allow, make sure you configure your firewall to allow traffic.

For example, using the sudo ufw allow 'OpenSSH' command will enable secure, encrypted logins over the network.

4. Managing the Apache Process

Now that you have your web server up and running, let’s go over some basic management commands.

To stop your web server, run this command:

sudo systemctl stop apache2

To start the webserver when it is stopped, run this command:

sudo systemctl start apache2

To stop and then start the service again, run this command:

sudo systemctl restart apache2

 If you are simply making configuration changes, Apache can often reload without dropping connections. To do this, use this command:

sudo systemctl reload apache2

By default, Apache is configured to start automatically when the server boots. If this is not what you want, disable this behavior by typing:

sudo systemctl disable apache2

To re-enable the service to start up at boot, type:

sudo systemctl enable apache2

This blog helped you install Apache on Ubuntu using a set of simple commands.

If you have any queries or doubts about this topic please feel free to contact us. We will try to reach you.

Comments (0)

Comment


Note: All Input Fields are required.