Site icon DesignLinux

How to Install Joomla on Ubuntu 18.04

When it comes to creating websites, one of the easiest ways to have your site up and running is using a CMS (content management system) that usually comes with bundled PHP code and all themes and plugins you need.

Apart from WordPress, the other popular CMS is Joomla. Joomla is a free and open-source CMS that is built on PHP and stores its data on an SQL based database engine on the backend.

In this article, you will learn how to install Joomla on Ubuntu 18.04 and newer Ubuntu releases.

Step 1: Update Ubuntu System Packages

It’s always a great idea to update system packages and repositories before anything else. So update & upgrade your system by running.

$ sudo apt update -y && sudo apt upgrade -y
Update Ubuntu System Packages

Update Ubuntu System Packages

Step 2: Install Apache and PHP 7.2 in Ubuntu

Joomla is written on PHP and stores data in MySQL at the back-end. Further, users will access any Joomla based site via a browser and for that reason, we need to install an Apache web server that will serve Joomla pages.

To install Apache and PHP ( we are going to use PHP 7.2) execute the commands below.

$ sudo apt install apache2 libapache2-mod-php7.2 openssl php-imagick php7.2-common php7.2-curl php7.2-gd php7.2-imap php7.2-intl php7.2-json php7.2-ldap php7.2-mbstring php7.2-mysql php7.2-pgsql php-smbclient php-ssh2 php7.2-sqlite3 php7.2-xml php7.2-zip

Install Apache and PHP in Ubuntu

With the installation complete, you can verify the version of Apache installed by running the dpkg command.

$ sudo dpkg -l apache

Check Apache Version in Ubuntu

Now start and enable the Apache webserver.

$ sudo systemctl start apache2
$ sudo systemctl enable apache2

To confirm that Apache is up and running, run the command:

$ sudo systemctl status apache2

Now head over to your browser and type in your server’s IP address in the URL bar as shown:

http://server-IP

You should get a webpage below showing that Apache is installed and running.

Verify Apache Page in Ubuntu

To confirm if PHP is installed execute the command.

$ php -v

Check PHP Version in Ubuntu

Step 3: Install MariaDB in Ubuntu

Since Joomla will require a database on the backend to store its data, we need to install a relational database server. For this guide, we will install the MariaDB server which is a fork of MySQL. It’s a free and open-source database engine that packs with improved features and functionality.

To install MariaDB execute the command:

$ sudo apt install mariadb-server

Install MariaDB in Ubuntu

Since MariaDB is not secured by default, that leaves it vulnerable to potential breaches. As a precaution, we are going to secure the database engine

To achieve this, issue the command:

$ sudo mysql_secure_installation

Hit ENTER when prompted for the root password and press ‘Y’ to set the root password.

Set MySQL Password in Ubuntu

For the remainder of the section, just type ‘Y’ and hit ENTER to set it to the recommended settings that will fortify its security.

Secure MySQL in Ubuntu

We have finally secured our database engine.

Step 4: Create a Joomla Database

As discussed earlier, Joomla stores its data on a backend SQL server, in this case, MariaDB. So we are going to create a database to store its files.

First, we are going to login to MariaDB using the command:

$ sudo mysql -u root -p

To create the database, database user and grant privileges to the database user, run the commands below.

MariaDB [(none)]> CREATE DATABASE joomla_db;
MariaDB [(none)]> GRANT ALL ON joomla_db.* TO ‘joomla_user’@’localhost’ IDENTIFIED BY ‘[email protected]’;
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> EXIT;

Step 5: Download Joomla in Ubuntu

In this step, we are going to download the installation file from Joomla’s official website. At the time of writing, the latest version is Joomla 3.9.16. To download the installation package, execute the command below:

$ sudo wget https://downloads.joomla.org/cms/joomla3/3-9-16/Joomla_3-9-16-Stable-Full_Package.zip

Once the download is complete. We need to unzip this to the webroot directory. So let’s make the directory and call it ‘Joomla’. You can give it whatever name you wish.

$ sudo mkdir /var/www/html/joomla

Next, unzip the zipped Joomla file to the just created ‘Joomla’ directory.

$ sudo unzip Joomla_3.19-16-Stable-Full_package.zip -d /var/www/html/joomla

Once done, set the directory ownership of the directory to Apache user and change the permissions as indicated below:

$ sudo chown -R www-data:www-data /var/www/html/joomla
$ sudo chmod -R 755 /var/www/html/joomla

For the changes to come into effect, restart the Apache webserver.

$ sudo systemctl restart apache2

Step 6: Configure Apache for Joomla

We are going to configure the Apache webserver to server Joomla webpages. For this to happen, we will create a virtual host’s files for Joomla and call it Joomla.conf.

$ sudo vim /etc/apache2/sites-available/joomla.conf

Paste the configuration below into the file and save.

<VirtualHost *:80>
     ServerAdmin [email protected]
     DocumentRoot /var/www/html/joomla/
     ServerName example.com
     ServerAlias www.example.com

     ErrorLog ${APACHE_LOG_DIR}/error.log
     CustomLog ${APACHE_LOG_DIR}/access.log combined

     <Directory /var/www/html/joomla/>
            Options FollowSymlinks
            AllowOverride All
            Require all granted
     </Directory>
</VirtualHost>

Next, enable the virtual hosts’ file.

$ sudo a2ensite joomla.conf
$ sudo a2enmod rewrite

Then restart the Apache webserver service for the changes to come into effect.

$ sudo systemctl restart apache2

Step 7: Finalizing the Joomla Installation in Ubuntu

With all the configurations in place, the only step remaining is to set up Joomla via a web browser. So launch your browser and browse your server’s URL as shown

http:// server-IP/joomla

The webpage below will be displayed. Fill in the required details such as Site name, Email address, username and password and click on the ‘Next’ button.

Joomla Site Configuration

In the next section, fill out the database details such as database type (Select MySQLI), database user, database name, and database password. Then click ‘Next’.

Joomla MySQL Settings

The following page provides an overview of all the settings and allows you to perform a pre-installation check.

Joomla Installation Overview

Scroll down to the ‘Pre-installation Check’ and ‘Recommended settings’ sections and confirm that all the required packages are installed and the settings are correct.

Joomla Pre-Installation Check

Then click the ‘Install’ button. The set up of Joomla will commence as shown.

Joomla Installation Process

When complete, you will get the notification below that Joomla has been installed.

Joomla Installation Complete

As a security precaution, the installer will require you to delete the installation folder before proceeding to log in, So scroll down and click on the ‘Remove installation folder’ button shown below.

Remove Joomla Installation Directory

To log in, click on the ‘Administrator’ button which will direct you to the page below.

Joomla Admin Login

Provide your username and password and click on the ‘Log In’ button. This ushers you to the Joomla dashboard shown below.

Joomla Dashboard in Ubuntu

You can now create your blog and use various plugins and settings to improve its appearance. We have finally wound up the installation of Joomla on Ubuntu 18.04.

Sharing is Caring…
Share on FacebookShare on TwitterShare on LinkedinShare on Reddit
Exit mobile version