How to Install LAMP PHP 7 on Linux Mint 17 LTS Easy Guide

June 25, 2018 | By the+gnu+linux+evangelist.

LAMP PHP 7 Linux Mint 17 Installation Guide

Hi! The Tutorial shows you Step-by-Step How to Install LAMP PHP 7 in Linux Mint 17 LTS GNU/Linux Desktop/Server.

First, to Install LAMP PHP 7 for Linux Mint you have to Setup the Linux Mint PHP 7 Repository.

And LAMP is de facto Web Development Standard. Today, the products that make up the LAMP stack are included by default in nearly all GNU/Linux distributions.

Finally, thanks to the new Zend Engine 3.0, your PHP 7 apps see up to 2x Faster performance and 50% better Memory consumption than PHP 5.x.

LAMP PHP 5.6 Installation in Ubuntu 22.04 – Step-by-step
  1. Open a Shell Terminal emulator window
    (Press “Enter” to Execute Commands)

    How to Install LAMP PHP 7 on Linux Mint 17 LTS - open terminal
  2. How to Install PHP 7.0 on Linux Mint 17.

    Linux Mint PHP 7.0 Installation Guide
  3. Then to Install the LAMP Web Server.

    sudo apt install apache2 php7.0 mysql-server php7.0-mysql

    If Got “User is Not in Sudoers file” then see: How to Enable sudo
    And when Prompted Setup the MySQL Admin Password.
    How to Install LAMP PHP 7 on Linux Mint 17 LTS - MySQL Admin Password Setup

  4. Next to Start Apache Server.

    sudo service apache2 start
  5. Finally, to Test LAMP WebServer Installation
    Access the Server document’s location:

    cd /var/www/html

    Create a PHP Info file:

    sudo nano info.php

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

    <?php
    phpinfo();
    ?>
    

    Ctrl+x to Save & Exit from nano Editor ;)
    Set the www-data as User and Group:

    sudo chown www-data:www-data info.php

    Then Open on Browser the URL:
    http://localhost/info.php
    In case Replace “localhost” with your Server IP in the above URL.
    How to Install LAMP PHP 7 on Linux Mint 17 LTS - PHP Info
    You should Successfully see the PHP Info notice similar to here above :)

  6. How to Create an Apache 2 Virtual Host on Linux Mint.

    Linux Mint Apache2 Virtual-Host Quick Start

QuickChic Theme • Powered by WordPress