How to install Bagisto on AWS

Updated 19 January 2021

An eCommerce platform is the foundation of online business regardless of whether it’s B2B or B2C. The right eCommerce platform will also help in simplifying the business interaction process with the consumers, employees, and clients. Therefore, if you don’t have a strong eCommerce platform then you can’t compete online. So, the right eCommerce platform plays a very important role in expanding and increasing the market, And Bagisto is amongst them. In this blog, we’ll learn how to install Bagisto on AWS (Under Free-Tier Policy).

You may wonder why I prefer Bagisto as an eCommerce platform and AWS as a hosting provider to host my website, while we have other hosting providers too? So, let’s keep answering the simple question.

What’s the bagisto, exactly?

Bagisto is an open-source eCommerce platform, which is built on various open source technologies, such as PHP framework, laravel, Vue.js, MySQL.

It is built for merchants to launch their own shopping cart system with a wide variety of fully controllable features. It also offers numerous post-commerce solutions, such as Marketplace solutions, POS solutions, PWA App, and Dropship solutions.

Why we’re using AWS?

Cloud Computing allows an eCommerce platform to cater to the changing market demand and scenarios. It also offers scalable technology tailored to business needs and allows upscale or downscale facilities depending on demand and traffic.

Additionally, Amazon Web Services (AWS) is the most advance and widely acceptable cloud platform in the world that provides more than 175 fully integrated data center facilities worldwide. A million users use AWS to cut costs, to make themselves more agile, and to innovate faster.

Installation requirements for Bagisto:

What we’re going to use :

How to install Bagisto on AWS

So let’s move to the installation part:

STEP 1: Creation of AWS Account:

(i) To start with, create a new AWS account by using Sign-up. 

 

 

(ii) And then log in to your AWS account by Sign-in.

 

 

(iii) Also, select the web server location ie AWS region from the list available. where you want to launch the EC2 instance. The option is at the top of the bar on the right hand side.

 

 

STEP 2: Creation of EC2 Instance :

(i) After your account has been successfully created, select the EC2 among the available AWS services or you can search for an EC2 service in the search box.

 

 

(ii) And then Select the Launch Instance button from the dropdown menu.

 

 

(iii) Select the server ie, Ubuntu Server 18.04 LTS by scroll down or you can directly search in the search box.

 

 

(iv) Now choose the Instance type and click on the tab, Next: Configure Instance Details.

 

 

(v) After the above steps, select the number of EC2 Instances, you want to run and then choose the tab, Next: Add Storage.

 

 

(vi) Now add up the storage as per your requirement and select the tab, Next: Add Tags.

 

(vii) Add tags and choose the tab, Next: configure security group.

 

 

(viii) Now, Click Add rule in configure security group, and ADD the following :

SSH, HTTP,  and HTTPS – select anywhere in the source column for all rules. After adding up the rules, select the review and launch tab.

 

 

(ix) Under this step, review the instance launch to recheck your Instance settings one more time and if everything goes right, then select the launch button.

 

 

(x) This step is concerned with creating a key pair (It’s better to use the domain name for the key pair name) and after the creation, download the key pair.


 

(xi) Once the pem file is downloaded, adhere to the terms and conditions of the AWS, and click the Launch button. You’ll see the image as below.

 

 

(xii) Scroll down and press the “View Instances” button after the successful launch of the instance.

 

 

(xiii) Now, the newly generated instance can be seen. Click on the instance, and you will get your instance’s summary. To connect the instance, click the “connect” button.

 

 

(xiv) Choose the ‘SSH client’ option from the three options below. To connect to your Ubuntu server, you can copy and paste the command directly into your terminal. Mention in point 3 and, in the example, as in the image below.

Note: **To log in to your Ubuntu Server, please follow either STEP (xiv) or STEP 3. The command is the same in each of these steps.

 

 

STEP 3: Log in to your Ubuntu Server by executing the command mentioned below:

After logging in, install the necessary application software.

 

(i) Install Apache2, php7.3, and its modules by executing the listed commands in the correct order.

If any of the PHP modules remains, simply through this command you may install it.

sudo apt-get install php7.3-<module_name>

Check the version of PHP, if it is php7.3.x, then allow the PHP-module apache and the rewrite-apache module.

 

(ii) Install Curl and Node.js version 10.x

 

(iii) Install the Composer

 

STEP 4: SSH User creation

Presently, we were in our server’s root user, but due to security issues, we do not keep our application code in the directories of the root user. So, we have to create another SSH user for this.

Create an SSH user who will be the owner of the application code. I create an SSH user with the name “bagisto.” You can pick any name you want.

sudo adduser bagisto

This prompts a password window where you can set the password. The remaining fields can be left empty by simply pressing the enter key. Additionally, after creating a user, we will switch to a new user.

 

STEP 5: Download Bagisto by using the command below :

composer create-project bagisto/bagisto

After downloading, a directory name “bagisto” will be created inside the public HTML directory, then go to the public directory / bagisto. It is the directory that loads index.php.

cd bagisto/public

 

STEP 6: Apache configuration

To support the web pages we will configure apache. So, we need to switch again to the root user for configuring apache.

You will find the following lines as shown below, after executing the above command.

Now, change this to :

Save it, and exit after this.

Furthermore, configure the envvars file by executing the below command :

sudo nano /etc/apache2/envvars

And find these lines :

Modify the apache SSH username by this way :

And configure file apache2.conf by the following command :

sudo nano /etc/apache2/apache2.conf

You will find the block code as shown below :

Modify it to the following code :

Save the file and exit it.

 

STEP 7: Install MYSQL Server for database creation by executing the following commands and when a password is asked after the below two commands, simply press ENTER.

Meanwhile, make some changes to php.ini file

file_uploads = On
allow_url_fopen = On
short_open_tag = On
memory_limit = 256M
upload_max_filesize = 100M
max_execution_time = 360
date.timezone = America/Chicago

After all the above mentioned steps, please enable permission to access your Bagisto root directory as shown below:

 

STEP 8 : Bagisto configuration

After all the above steps, go to your browser and enter the IP address of your EC2 instance or domain name. A page similar to the one below will open and then click the “continue” button.

 

 

Similarly, a new Environment Configuration page will appear after selecting the “continue” option. Then enter the details and enter the same credentials you obtain while creating a database. You can also use your domain name in the Default URL.

 

 

 

 

 

Firstly the front end will be open after Continue. After that to access, the dashboard hit the URL “example.com/admin/” in the Admin panel, the admin login will open as in the image below.

 

Setup Bagisto Using GUI Installer - admin details

 

In addition, this is what the default admin dashboard looks like.

 

 

As a result, the homepage of your default eCommerce website will be like this:

 

 

In short, your eCommerce platform is ready to use.

To know more about the Bagisto Installation on Google Cloud Platform (GCP), just click the link.

 

In case of any help, query, or feedback please contact us or raise a ticket.

 

Thank you for reading this article,

Keep in touch!!

 

. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


2 comments

  • Ricardo Suyon
    • Bhawana Dehran (Moderator)
  • Start a Project


      Message Sent!

      If you have more details or questions, you can reply to the received confirmation email.

      Back to Home