In this guide, we will explore setting up Opencart in a Ubuntu 20.04 Server with Apache serving it and Mariadb10 acting as the database.
Opencart is an open-source eCommerce platform. Everything you need to create, scale and run your business”. It is an Open Source online store management system. It is PHP-based, using a MySQL database and HTML components.
Apache is a popular web web server software that is often used to serve php content. Mysql is also a popular relational management system used by popular websites.
Related Content
- How to Setup Opencart with LAMP (PHP, Apache, Mariadb) on OpenSUSE Leap 15.3
- How to Setup Opencart with LAMP (PHP, Apache, Mariadb) on Debian 11
- How to install and set up PHP and Apache(LAMP stack) on Ubuntu 20.04
- How to install and set up PHP and Apache(LAMP stack) on Debian 11
- How to install and Configure Mariadb 10 in Ubuntu 20.04
- How to install and Configure Mariadb 10 in Debian 11
- Mysql Permissions – Create, Update, Delete Database Users
- Install Apache PHP 7.4 (LAMP) stack on Centos 8
- How to install and Enable Remi Repository in Centos 6/7/8
Prerequisites
To follow along, ensure you have the following:
- An updated Ubuntu 20.04 Server
- Root access or user with sudo access
- Internet access
Steps
We will execute this in the following steps:
- Ensure that the server is up to date
- Install and configure Mariadb 10 in Ubuntu 20.04
- Creating mysql user for Opencart
- Install php in Ubuntu 20.04
- Installing Apache on Ubuntu 20.04
- Setting up Opencart in the server
- Create a virtual host to serve the Opencart
- Going through Opencart installation process
1. Ensure that the server is up to date
Before proceeding, it is always a good practice to ensure that the server is up to date. Use these commands to achieve this
sudo apt update
sudo apt upgrade -y
Install some common packages that we will need later
sudo apt install -y vim unzip
2. Installing Mariadb in Ubuntu 20.04
Mariadb is a popular Opensource relational management system. It is available in the default repositories as mariadb-server
.
Install it with this command:
sudo apt install -y mariadb-server
Mariadb will be installed and started by default in Ubuntu 20.04. Check the status with this
$ sudo systemctl status mariadb
● mariadb.service - MariaDB 10.3.32 database server
Loaded: loaded (/lib/systemd/system/mariadb.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2021-12-16 18:51:26 UTC; 6s ago
Docs: man:mysqld(8)
https://mariadb.com/kb/en/library/systemd/
Main PID: 35152 (mysqld)
Status: "Taking your SQL requests now..."
Tasks: 31 (limit: 4631)
Memory: 64.3M
CGroup: /system.slice/mariadb.service
└─35152 /usr/sbin/mysqld
Dec 16 18:51:26 ip-10-2-40-129 /etc/mysql/debian-start[35192]: Processing databases
Dec 16 18:51:26 ip-10-2-40-129 /etc/mysql/debian-start[35192]: information_schema
Dec 16 18:51:26 ip-10-2-40-129 /etc/mysql/debian-start[35192]: mysql
Dec 16 18:51:26 ip-10-2-40-129 /etc/mysql/debian-start[35192]: performance_schema
Dec 16 18:51:26 ip-10-2-40-129 /etc/mysql/debian-start[35192]: Phase 6/7: Checking and upgrading tables
Dec 16 18:51:26 ip-10-2-40-129 /etc/mysql/debian-start[35192]: Processing databases
Dec 16 18:51:26 ip-10-2-40-129 /etc/mysql/debian-start[35192]: information_schema
Dec 16 18:51:26 ip-10-2-40-129 /etc/mysql/debian-start[35192]: performance_schema
Dec 16 18:51:26 ip-10-2-40-129 /etc/mysql/debian-start[35192]: Phase 7/7: Running 'FLUSH PRIVILEGES'
Dec 16 18:51:26 ip-10-2-40-129 /etc/mysql/debian-start[35192]: OK
To ensure that mariadb starts on boot, enable it with this systemd command:
sudo systemctl enable mariadb
Once the mysql service is running, you need to secure it. Mysql provides a commandline utility that will do that:
sudo mysql_secure_installation
The above command will take you throuh prompts to secure and set a root password for the mysql instance.
Check more info on Installing and setting up mysql in this guide here.
3. Creating mysql user for OpenCart
It is always recommended to have a dedicated user for each app that connects to the DB. Check out this guide on managing mysql permissions here. We will set up a database, user and password to be used by Opencart:
Connect to mysql server:
mysql -u root -p
After Supplying your password, enter the following to the mysql prompt:
create database opencart;
create user 'opencart_user'@'%' identified by 'S0mStrongPa$$word';
grant all privileges on opencart.* to 'opencart_user'@'%';
Now that we have configured our mysql connection, lets go to the next section where we install and configure PHP and Nginx.
4. Installing PHP in Ubuntu 20.04
Opencart works fine with PHP 7.4. To install php 7.4, we need to enable remi repository so we get the latest version.
Then install php and dependancies
sudo apt install -y \
php \
php-cli \
php-gd \
php-curl \
php-zip \
php-dom \
php-xml \
php-simplexml \
php-mbstring \
php-intl \
php-json
For more info on setting up PHP and Apache, check out this guide here.
5. Installing apache on Ubuntu 20.04
Apache packages are available in the default Ubuntu 20.04 repositories as apache2
. Install it using this command:
sudo apt install -y apache2
Confirm the installed packages using this command:
$ apt-cache policy apache2
apache2:
Installed: 2.4.41-4ubuntu3.8
Candidate: 2.4.41-4ubuntu3.8
Version table:
*** 2.4.41-4ubuntu3.8 500
500 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages
100 /var/lib/dpkg/status
2.4.41-4ubuntu3.6 500
500 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages
2.4.41-4ubuntu3 500
500 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal/main amd64 Packages
The service will be started by default. Check the status using this command:
$ sudo systemctl status apache2
● apache2.service - The Apache HTTP Server
Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2021-12-16 18:36:59 UTC; 19min ago
Docs: https://httpd.apache.org/docs/2.4/
Main PID: 33818 (apache2)
Tasks: 7 (limit: 4631)
Memory: 10.9M
CGroup: /system.slice/apache2.service
├─33818 /usr/sbin/apache2 -k start
├─33821 /usr/sbin/apache2 -k start
├─33822 /usr/sbin/apache2 -k start
├─33823 /usr/sbin/apache2 -k start
├─33824 /usr/sbin/apache2 -k start
├─33825 /usr/sbin/apache2 -k start
└─34419 /usr/sbin/apache2 -k start
Dec 16 18:36:59 ip-10-2-40-129 systemd[1]: Starting The Apache HTTP Server...
Dec 16 18:36:59 ip-10-2-40-129 systemd[1]: Started The Apache HTTP Server.
To enable the service on boot, use this command
sudo systemctl enable apache2
To confirm that Apache is installed and working fine, please visit the server’s IP address in the browser (http://server_ip). If you don’t know the server IP, get it using this command in your terminal:
curl -4 icanhazip.com
If all is well, you should see the Apache2 Ubuntu Default Page.
6. Setting up Opencart
After setting up mysql, php and apache, we need to download the Opencart Installation file and set it in the server. We need to create a directory in the server where the content will be hosted.
I am going to be setting up Opencart to be served from the domain http://opencart.citizix.com
. Since Apache serves content from /var/www/html
, I will create my sites directory in that /var/www
directory:
sudo mkdir /var/www/opencart.citizix.com
Make sure your web user has the permission to read, write and execute all directories under the site path:
sudo chown -R $USER:$GROUP /var/www/opencart.citizix.com
Now lets download and extract Opencart content. Opencart uses github to track its releases. Head over to github releases page for Opencart here and grab the latest release. As of the writting of this article, the latest version is 3.0.3.8
.
Download it with this command:
curl -LO https://github.com/opencart/opencart/releases/download/3.0.3.8/opencart-3.0.3.8.zip
Now that the file has been downloaded, we need to extract it. You need the zip command to extract it.
unzip opencart-3.0.3.8.zip
The content will be extracted to the upload
directory. Let’s move it to our site path with this command:
sudo mv upload/* /var/www/opencart.citizix.com/
Rename config-dist.php
to config.php
and admin/config-dist.php
to admin/config.php
:
cd /var/www/opencart.citizix.com/
mv config-dist.php config.php
mv admin/config-dist.php admin/config.php
7. Create a virtual host to serve Opencart
Now that the software packages required has been installed and the Opencart content has been copied, we need an Apache virtual host to serve the content for our site http://opencart.citizix.com
.
Apache Virtual host files specifies the configuration of each sites and tell the Apache web server how to respond to various domain requests.
Please note that the DNS for the domainto be used should already be configured to point to the IP address of the server.
Confirm that with:
dig -t A opencart.citizix.com
The Apache configurations will be stored in the directory /etc/httpd/conf.d/
. Lets create a config for our site:
sudo vim /etc/apache2/sites-available/opencart.citizix.com.conf
Add the following content:
<VirtualHost *:80>
ServerName opencart.citizix.com
ServerAlias opencart.citizix.com
DocumentRoot /var/www/opencart.citizix.com
DirectoryIndex index.php
ErrorLog /var/log/apache2/opencart.citizix.com.error.log
CustomLog /var/log/apache2/opencart.citizix.com.requests.log combined
</VirtualHost>
To apply the changes, please restart apache:
sudo systemctl reload apache2
8. Going through Opencart installation process
Once the above set up is done, we should be ready to start installing opencart. Visit the url defined in the virtual host above to initiate the set up process. In my case when I visit http://opencart.citizix.com
, I am welcomed by this page:
Opencart Setup Step 1
The page above is asking you to accept the terms. Click Continue to go to the next page:
Opencart Setup Step 2 a
The above step is to verify that the server is set up as expected. If you installed the required php packages above you should see a green check for each of the items.
Click Continue to go to the next step:
Opencart Setup Step 3
The step above is where you set up your database configuration and admin user. Fill in the required details and click Continue.
If everuthing is Ok, you will be taken to the final step which tells you that the installation was successful:
Opencart Setup Step 4
Up to this point Opencart is set up and ready to use.
Final set up
Lets remove the installation directory in the server as recommended by that warning in the last page
cd /var/www/opencart.citizix.com/
rm -rf installation
Lets move the Storage directory and update configs as seen in this screenshot:
sudo mv /var/www/opencart.citizix.com/system/storage/ /var/www/storage/
Update the config files as seen in the screenshot.
Conclusion
From the above steps, we were able to set up Ubuntu 20.04 server to serve Opencart.