How to Install LAMP Server on Xubuntu 15.04 Vivid 32-64bit Gnu/Linux Easy Guide

March 27, 2015 | By the+gnu+linux+evangelist.

LAMP Server Quick Start for Xubuntu 15.04 Vivid

Hi! The Tutorial shows you Step-by-Step How to Install Apache, MySQL and PHP 5 on Xubuntu 15.04 Vivid Vervet i386/amd64 GNU+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 GNU/Linux distributions, and together they make a powerful web application platform.

Install LAMP Server on Xubuntu 15.04 Vivid - Featured
  1. Open a Terminal Shell Emulator
    (Press “Enter” to Execute Commands)

    Install LAMP Server for Xubuntu 15.04 Vivid - Open Terminal

    In case first see: Terminal QuickStart Guide.

  2. Installing the LAMP Web Server for Xubuntu.

    sudo apt-get install apache2 php5 mysql-server php5-mysql

    If Got “User is Not in Sudoers file” then see: How to Enable sudo

    How to Enable Apache2 mod_rewrite Module on Xubuntu.

    Enabling Apache2 Rewrite for Xubuntu
  3. 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
    In case Replace “localhost” with your Server IP in the above URL.
    LAMP Quick Start - PHP Info
    You should Successfully see the PHP Info notice :)

  4. How to Create an Apache 2 Virtual Host on Xubuntu.

    GNU/Linux Apache2 Virtual-Host Quick Start

QuickChic Theme • Powered by WordPress