How to Install LAMP in Ubuntu
LAMP is an acronym that stands for Linux, Apache, MySQL, and PHP. Together, these applications are one of the most popular website hosting platforms. It is free, open-source, and easy to get started. This tutorial will show the process for how to get up and running quickly in Ubuntu 19.04 or other related Linux distributions.
Install Linux
Download an Ubuntu 19.04 iso from their website and burn the iso to a disk or flash the image to a flash drive. Boot the server to the installer and follow the on-screen instructions.
Update Repositories
In the terminal application in Ubuntu, enter the following command to update the repositories.
sudo apt update
Install Apache
sudo apt install apache2
Install MySQL
sudo apt install mysql-server
Install PHP
sudo apt install php
Comments
Post a Comment