• Contact
  • Contact Us
  • Disclamer
  • Home 1
  • Home 2
  • Home 3
  • Privacy Policy
Friday, May 9, 2025
How VPS - How to use/setup VPS
  • Login
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon
No Result
View All Result
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon
No Result
View All Result
How VPS - How to use/setup VPS
No Result
View All Result
Home Operating System Linux

How to Install Open Eshop on Ubuntu 16.04

How VPS by How VPS
January 1, 2020
in Linux
0
0
SHARES
14
VIEWS
Share on FacebookShare on Twitter

Contents

  1. Prerequisites
  2. Step 1: Getting Started
  3. Step 2: Install LAMP Server
  4. Step 3: Configure Database
  5. Step 4: Install Open Eshop
  6. Want to contribute?


Open Eshop is a free and open source eCommerce software to sell digital goods, like MP3, eBooks, Movies, Software and much more. In this tutorial, we will explain how to install Open Eshop on Ubuntu 16.04.

Prerequisites

  • A fresh Vultr Ubuntu 16.04 server instance.
  • A sudo user.

Step 1: Getting Started

It is always a good practice to update your OS. You can do this by running the following commands:

sudo apt-get update -y
sudo apt-get upgrade -y

Once your system is updated, restart your system and login with sudo user.

sudo shutdown -r now

Step 2: Install LAMP Server

You can install a lamp-server by just running the following command:

sudo apt-get install lamp-server^ -y

Once the installation is complete, we will need to adjust the some some values in the PHP configuration files as follow:

sudo nano /etc/php/7.0/cli/php.ini

Update the values for post_max_size, upload_max_filesize, and short_open_tag as follows:

post_max_size = 64M
upload_max_filesize = 64M
short_open_tag = On

Save and close the file when you are finished, then restart Apache web server to make this changes take effect:

sudo systemctl restart apache2

Step 3: Configure Database

Before configuring the database, you will need to secure Mysql first. You can secure it by running the mysqlsecureinstallation script:

sudo mysql_secure_installation

Answer all the questions as shown below:

Set root password? [Y/n] n
Remove anonymous users? [Y/n] y
Disallow root login remotely? [Y/n] y
Remove test database and access to it? [Y/n] y
Reload privilege tables now? [Y/n] y

Once the database is secured, login to MySQL shell with the following command:

mysql -u root -p

Enter your root password when prompt then create a database for Open Eshop:

mysql> CREATE DATABASE openeshop_db;

Next, create a database user with the following command:

mysql> CREATE USER 'openeshop' IDENTIFIED BY 'your-password';

Next, grant privileges to the database:

mysql>GRANT ALL PRIVILEGES ON openeshop_db.* TO 'openeshop'@'localhost';

Next, flush the privileges table with the following command:

mysql>FLUSH PRIVILEGES;

Finally, exit from the MySQL shell:

MariaDB [(none)]>/q

Step 4: Install Open Eshop

First, download the latest stable version of the Open Eshop installation file from their official website with the following command:

sudo mkdir /var/www/html/openeshop
cd /var/www/html/openeshop
wget https://raw.githubusercontent.com/open-classifieds/open-eshop/master/install-eshop.php

Next, Change the owner of the downloaded file with the following command:

sudo chown -R www-data:www:data install-eshop.php

Next, create an apache virtual host server block for Open Eshop. You can do this by creating openeshop.conf file:

sudo nano /etc/apache2/sites-available/openeshop.conf

Add the following lines:

<VirtualHost *:80>
  ServerAdmin [email protected]
  DocumentRoot /var/www/html/openeshop
  DirectoryIndex install-eshop.php
  ServerName yourdomain.com
  ServerAlias www.yourdomain.com
<Directory /var/www/html/openeshop/>
 Options Indexes FollowSymLinks MultiViews
 AllowOverride All
 Order allow,deny
 allow from all
</Directory>
 ErrorLog /var/log/apache2/yourdomain.com-error_log
 CustomLog /var/log/apache2/yourdomain.com-access_log common
</VirtualHost>

Save and close the file when you are finished, then enable the site with the following command:

sudo a2ensite openeshop

Finally, restart Apache web server so that the changes take place:

sudo systemctl restart apache2

Finally, Open your web browser and navigate to URL http://yourdomain.com and accomplish the installation process.

Want to contribute?

You could earn up to $300 by adding new articles

Submit your article
Suggest an update
Request an article
Previous Post

Track Bandwidth On Linux Using vnStat

Next Post

Configure Uncomplicated Firewall (UFW) on Ubuntu 14.04

Next Post

Configure Uncomplicated Firewall (UFW) on Ubuntu 14.04

Leave a Reply Cancel reply

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

No Result
View All Result

Recent Post

Install Imagemagick on CentOS
CentOS

Install Imagemagick on CentOS

by How VPS
June 28, 2023
0

This is how I installed Imagemagick on a vanilla CentOS server Start off by installing the prerequisites yum install php-pear...

Read more
how to Check phpinfo

How to Check phpinfo of Hosting or VPS?

June 28, 2023
Failed to download metadata for repo 'appstream' on Centos 8

How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8

February 25, 2022
How to Fix MySQL Error "Plugin 'InnoDB' registration as a STORAGE ENGINE failed"?

How to Fix MySQL Error “Plugin ‘InnoDB’ registration as a STORAGE ENGINE failed”?

November 17, 2020
How to optimize Mysql or MariaDB

How to optimize Mysql or MariaDB

November 3, 2020

Recent News

  • Install Imagemagick on CentOS
  • How to Check phpinfo of Hosting or VPS?
  • How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8

Category

  • Arch
  • Authentication
  • Backups
  • BSD
  • Centmin Mod
  • CentOS
  • Control Panels
  • CoreOS
  • CWP
  • Debian
  • Directadmin
  • Encryption
  • Fedora
  • Firewalls
  • Hocvps Script
  • Hosting providers
  • Kloxo-MR
  • Linux
  • Mitigations
  • Operating System
  • Plesk
  • Reviews
  • Securing VPS/Servers
  • Security Patches
  • SSL Certificates
  • Uncategorized
  • Upgrading
  • VPS/Servers management guides
  • Vulnerability Detection
  • Web servers software
  • Webhosting Control Panel
  • About
  • Advertise
  • Careers
  • Contact

© 2025 JNews - Premium WordPress news & magazine theme by Jegtheme.

No Result
View All Result
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon

© 2025 JNews - Premium WordPress news & magazine theme by Jegtheme.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
Thabet