Server Guru

Just another Tech Blog

LinuxUbuntu

How to Install Apache, MySQL, MariaDB and PHP on Ubuntu 16.04 , 17.04, 18.04

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

Leave a Reply