Hello,
In this week’s feature highlight, we look at How to Install LAMP Stack with MariaDB on Ubuntu 21.04
![](https://blog.crowncloud.net/wp-content/uploads/2021/09/Ubuntu-21.04-1024x576.png)
Update the system
First, lets check for any pending system package updates,
apt update
apt upgrade
Install Apache
A command to install apache2 and with its utilities.
apt install -y apache2 apache2-utils
Next, check the Status of Apache.
systemctl status apache2
Output:
root@server:~# systemctl status apache2
● apache2.service - The Apache HTTP Server
Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor prese>
Active: active
… Read More