Install Open Source ERP System WebERP on Ubuntu Linux

weberp feature image

WebERP is an open source, web based accounting and business management system for Small and Medium Enterprises (SME). It is a widely used  ERP system on all popular operating systems like Microsoft Windows, Linux and Mac OS. It can also act as an online shop or a retail management system for your business. This application is available in multiple languages and has been deployed and used at many organizations and has gained users’ satisfaction and trust.

History and Features

The project was started in 2003 and has been under constant development  since then. The most recent release of this application is 4.11.15. It has come a long way and has evolved as an important open source application. It is a feature rich application; here are some noteworthy features for this application. Please note that it has a very long list of features, only few most important of them are listed below:

  • It is entirely web based so you can access it remotely too from anywhere in the world.
  • It can run on any operating system and web server until PHP web pages are served by the respective web server or operating system.
  • It can produce PDF formats of various business and financial reports for easier presentation and understanding.
  • It is a multi theme web based application, so different users can apply their own themes and enjoy the look and feel of their own choice.
  • It is fully utf-8 compliant application, highly optimized and fast processing.
  • It provides multi-currency support.
  • It lets you add multiple inventory points and easily track them using unique serial numbers.

Installing WebERP on Ubuntu Linux 15.04

Let’s see how we can install this application on Ubuntu operating system. Kindly note that it is developed in PHP and uses MySQL on the backend for database. So in order to install and use this ERP system, we must have following component installed on our ubuntu system.

  • PHP 5
  • Apache 2
  • MySQL

Launch your system terminal window and run following command to install LAMP stack on your system. Lamp stack comes bundled with all three components (Apache, MySQL, PHP).

sudo apt-get install lamp-server^

During the installation process, you should see a pop up window asking to set root password for mysql. Note down the password you set here as it will be used later when we will initiate the install process for WebERP.

MySQL install

As soon as the installation of Lamp stack is complete, run following command to start apache service.

Sudo /etc/init.d/apache 2 start

Load your browser and launch http://localhost to verify that apache is working fine on your system. Successful installation should display page as shown below.

Apache page

Important Note: Please note that the default document root for Apache 2 is /var/www/html. Either you change the apache document root to your desired location or you should upload your web pages on this path  so that apache may serve them successfully.

Let’s create a mysql database for our new WebERP installation. Login into mysql using root password we specified earlier.

mysql –uroot –p

Here create new database by running the following command:

create database weberp;

mysql database

Let’s download the zip file for WebERP from following URL.

Download WebERP

Once the download process is complete, run following command to move it to apache document root directory.

sudo mv webERP_4.12.3.zip /var/www/html

Now change your working directory:

cd /var/www/html

Here run following command to unzip the downloaded WebERP file.

unzip webERP_4.12.3.zip

Load your browser and launch http://localhost/webERP . It should display page as shown in the following screenshot.

WebERP

Choose your preferred language from here and click “Next Step”.

Now specify your database logins, you just need to enter your mysql root password here, all other details are auto updated and are fine. If you have created database with some different name then specify that name here in “Database Name” text box. You can keep “Database Prefix” option empty.

WebERP

 

Click “Next Step” to take installation further, here specify your admin user password, the default password is “weberp”, but you can specify the password of your own choice here. You can not change admin username though.

WebERP

Click “Install” and it will take less than a minute to perform all installation/configurations. There you go, it will take you straight to the login page.

WebERP Login

Login and start using this wonderful application.

WebERP main

Conclusion

WebERP is an easy to use application in the true sense. Although it is lacking Payroll module, but it still fulfills the business and accounting needs of any organization to great extent. If you are already using this application or like the way it works, say thank you to the development team by donating on the project official page.

WebERP official page