LAMP WebServer Quick Start for Lubuntu 14.04 Trusty
You are Welcome! The Tutorial Shows You Step-by-Step How to Install Apache, MySQL and PHP 5 on Lubuntu 14.04 Trusty Tahr LTS i386/amd64 Linux Desktop.
LAMP has become a de facto Development Standard. Today, the products that make up the LAMP stack are included by default in nearly all Linux distributions, and together they make a powerful web application platform.

-
Login into Server Shell.
Or Open a Command Line Terminal Window
(Press “Enter” to Execute Commands)
Ctrl+Alt+t -
Installing the LAMP Web Server
sudo apt-get install apache2 php5 mysql-server php5-mysql
Then to enable PHP 5 run
sudo a2enmod php5
How to Enable Apache2 mod_rewrite Module on Lubuntu
-
Testing LAMP WebServer Installation
cd /var/www/html
Create a PHP Info file:
sudo touch info.php
sudo chown www-data:www-data info.php
sudo nano info.php
If Got “User is Not in Sudoers file” then see: How to Enable sudo
Append:<?php phpinfo(); ?>
Ctrl+x to Save & Exit from nano Editor ;)
Open on Browser the URL:
http://localhost/info.php
You should Successfully see the PHP Info notice :)
How to Create an Apache 2 Virtual Host on Lubuntu
Tags: Apache, apache 2, apache lubuntu, Apache Web-Server, Guide, How-to, Install, lamp, lamp linux, lamp Lubuntu, Linux, linux web server, Lubuntu, Lubuntu 14.04 trusty tahr, Lubuntu web server, MySQL, mysql Lubuntu, PHP 5, Tutorial, web server lubuntu