Learn How To Install Apache, MySQL and PHP on Ubuntu 16.04

June 16, 2019

Table of Contents

Note: You will need sudo access for the commands in this article.

Step 1: Install Apache

First, update your package manager.

sudo apt-get update -y

Install and start Apache.

sudo apt-get install apache2 -y
sudo systemctl start apache2.service

Verify that Apache was installed without errors by accessing it from your local browser. Enter hostname -I to obtain your IP address for the server and navigate to http://SERVER_IP/.

Step 2: Install MySQL

Enter the following into the shell prompt.

sudo apt-get install mysql-server -y

This will install the MariaDB database server (a fork of MySQL). You will be asked to enter a password for the MySQL root user, so go ahead and do that.

Then, run sudo /usr/bin/mysql_secure_installation. Press “y“.

Depending on the level of security, you’ll have the option to adjust the password complexity. For now, we’ll be using the strong security preset.

For any of the following options, press “y” and continue.

Step 3: Install PHP

The last thing we’ll be doing in this article is installing PHP.

Install PHP:

sudo apt-get install php -y

Then install common PHP extensions such as GD, MySQL, and so forth.

sudo apt-get install -y php-{bcmath,bz2,intl,gd,mbstring,mcrypt,mysql,zip} && sudo apt-get install libapache2-mod-php  -y

Step 4: Starting Apache and MySQL on boot

This is necessary to start your web environment on boot.

sudo systemctl enable apache2.service
sudo systemctl enable mysql.service

Finally, restart Apache to allow PHP to run.

systemctl restart apache2.service

Conclusion

That’s it! You’ve successfully installed a LAMP stack on your Ubuntu 16.04 VPS.

Need help?

Do you need help setting up this on your own service?
Please contact us and we’ll provide you the best possible quote!