Ubuntu 18.04 phpMyAdmin: Difference between revisions

From Modiford
Jump to navigation Jump to search
No edit summary
m (WikiAdmin moved page Ubuntu 18.04 PHPMyAdmin to Ubuntu 18.04 phpMyAdmin without leaving a redirect: Stylised as 'phpMyAdmin')
(No difference)

Revision as of 17:51, 29 July 2018

Installation Process

LAMP Stack

The Linux Apache MySQL and PHP Stack, better known as LAMP, provides all the services for hosting a website using the programming language PHP. Depending on the system, MariaDB might substitute MySQL.

The simplest way to install LAMP is with the all-in-one package via 'tasksel'; if not already installed, run 'sudo apt install tasksel'.

  1. In a terminal type 'sudo tasksel' and press <Enter>;
  2. Navigate down to 'LAMP server' and press <Enter>;
  3. The 'Installing packages' process will download and install the packages for you;
    1. On Ubuntu 16.04 you will get prompted for a MySQL 'root' user password;
    2. On Ubuntu 18.04, once installation is complete, run 'sudo mysql_secure_installation' to specify a MySQL 'root' user password;
      1. Answer "Y";
      2. Select "1" for Medium or "2" for Strong as suits your security needs;
      3. Enter password and then re-enter to confirm;
      4. Answer "Y" to password strength (or otherwise specify a new password that matches the security requirements selected);
      5. Answer "Y" to remote anonymous user accounts;
      6. Select appropriate answer depending on whether you wish to connect to MySQL from an external connection or not;
      7. Select whether you want to remove the 'test' database or not;
      8. Answer "Y" to reload the privileges;

MyPHPAdmin

Visit [1] and right-click the latest version in '.tar.gz' format and select 'Copy Link Location' (or similar). For example, "phpMyAdmin-4.8.2-english.tar.gz" or other language choice to suit your needs.

  1. Open a new terminal and type 'mkdir myphpadmin';
  2. Type 'cd myphpadmin';
  3. Type 'wget ' and right-click and select 'Paste' (so, "wget https://files.phpmyadmin.net/phpMyAdmin/4.8.2/phpMyAdmin-4.8.2-english.tar.gz", as per your chosen download) and press <Enter>;
  4. Once downloaded, type 'tar zxvf phpMyAdmin-4.8.2-english.tar.gz'
  5. Once extracted, type 'sudo mv phpMyAdmin-4.8.2-english /var/www/html/'
  6. Very carefully execute the following command 'sudo chown -R www-data:www-data /var/www/';
  7. Type 'cd /var/www/html/';
  8. Type 'sudo mv phpMyAdmin-4.8.2-english phpMyAdmin' (or other name of your choosing, to be less obvious on a public website);
  9. Open a browser and navigate to your server's IP or DNS name: http://192.168.0.10/phpMyAdmin/