← Back to Knowledge Base
MySQL · November 3, 2021 · 1 min read

Installing PHP5 Apache Mysql and phpMyAdmin on Linux

In this article you will learn how to install PHP5, Apache and the database manager in MySQL PHPMyAdmin, just in simple 5 steps:

1 – The first command to execute is:

sudo apt-get install apache2 apache2-utils libapache2-mod-php5 php5 php5-mysql php5-cli php5-gd

2 – Proceed with the installation and wait for it to end, remembering that the apache root directory where your website will look is:

/ var / www /

3 – Now, let’s continue with the tutorial and install PHPMyAdmin, use the following command:

sudo apt-get install phpmyadmin

4 – After the installation is complete, it is necessary to move phpmyadmin to the apache root directory so that it can be accessed by your browser, use this command:

Cp -R / usr / share / phpmyadmin / / var / www / phpmyadmin

5 – Ready, now only access through your browser https: // IP / phpmyadmin /

Most essential part of the tutorial was done, now send your website to the root folder of apache which is  / var / www /

After that, go to http: // IP / e and proceed with the setup.

Okay, now you’re ready to install your site.