• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to install webERP on CentOS 7

2052

To install webERP on CentOS 7

webERP is an open-source, web based accounting/ ERP system that uses only a web browser and a PDF reader. It contains a plethora of features that are suitable for many businesses in both large scale and small scale or retail management. It also contains Purchase orders, MRP, Multi-Currency, Standard Costing, Ghost bills, Expense claims, and PDF reports. This tutorial covers the installation procedure of webERP on CentOS 7.

Pre-Requisite

- LAMP (Apache, PHP 7, MySQL)
- MySQL (create database and user and provide privileges to user)
- PHP modules (along with dependencies php70w-mysql php70w-curl php70w-json php70w-cgi php70w php70w-mcrypt php70w-xmlrpc php70w-gd)

Installation procedure

To proceed with the installation procedure, download the webERP package using wget command followed by the download link.

[root@linuxhelp1 ~]# wget https://excellmedia.dl.sourceforge.net/project/web-erp/webERP4.14.1.zip
--2017-10-23 15:09:57--  https://excellmedia.dl.sourceforge.net/project/web-erp/webERP4.14.1.zip
Resolving excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)... 202.153.32.19
Connecting to excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)|202.153.32.19|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 30862574 (29M) [application/octet-stream]
Saving to: ‘ webERP4.14.1.zip’ 

100%[======================================> ] 3,08,62,574  694KB/s   in 54s    

2017-10-23 15:10:51 (562 KB/s) - ‘ webERP4.14.1.zip’  saved [30862574/30862574]


Extract the downloaded package using unzip command.

[root@linuxhelp1 ~]# unzip webERP4.14.1.zip  -d /var/www/html/
Archive:  webERP4.14.1.zip
   creating: weberp/webERP/
  inflating: weberp/webERP/AccountGroups.php  
  inflating: weberp/webERP/AccountSections.php  
  inflating: weberp/webERP/AddCustomerContacts.php  
  inflating: weberp/webERP/AddCustomerNotes.php  
  inflating: weberp/webERP/AddCustomerTypeNotes.php  
  inflating: weberp/webERP/AgedControlledInventory.php  
  inflating: weberp/webERP/AgedDebtors.php  
  inflating: weberp/webERP/AgedSuppliers.php  
  inflating: weberp/webERP/AnalysisHorizontalIncome.php  
.
.
inflating: weberp/webERP/Z_Upgrade_3.11-4.00.php  
  inflating: weberp/webERP/Z_UploadForm.php  
  inflating: weberp/webERP/Z_UploadResult.php  

Next change the ownership of file in HTML location.

[root@linuxhelp1 ~]# chown -R apache.apache  /var/www/html/webERP

Create a virtual host configuration file for webERP using vim editor and enter the following content in the file. Save and exit the file.

[root@linuxhelp1 ~]# vim /etc/httpd/conf.d/weberp.conf
< VirtualHost *:80> 
ServerAdmin admin@weberp.org
DocumentRoot /var/www/html/webERP
ServerName weberp.org
ServerAlias www.weberp.org
< Directory /var/www/html/webERP/> 
Options FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
< /Directory> 
ErrorLog /var/log/httpd/weberp.org-error_log
CustomLog /var/log/httpd/weberp.org-access_log common
< /VirtualHost> 

Create an entry in hosts file and enter the following content in the file. Save and exit the file.

[root@linuxhelp1 ~]# vim /etc/hosts
192.168.7.240  weberp.org

Restart the Apache service.

[root@linuxhelp1 ~]# systemctl restart httpd.service

Switch over to the browser and access the webERP page. The installation page of webERP appears on the screen. Select the required Language and click Next Step.
language

Fill the required database details and click Next Step option.
database details

Next fill the required company details such as company name, accounts file, timezone and company logo.

company detail

Enter the administrator account settings and click Install option.
admin details

The installation is complete and now the login page of webERP appears on the screen. Enter the required credentials and click Login option.

login page

The Admin page of webERP is displayed as shown below.

admin page

The installation procedure of webERP on CentOS 7 is done without any glitches.

Tags:
ryder
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

Is WebERP opensource?

A

WebERP is a free and opensource software.

Q

For installing php70w modules what repo you have used for WebERP?

A

epel repo is used for that
# yum install epel-release
# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm" and then install required modules
# "yum install php70w php70w-opcache"

Q

What is the source page for downloading the latest version of WebERP?

A

To download WebERP visit "https://sourceforge.net/projects/web-erp/"

Q

What is webERP?

A

webERP is an open-source, web based accounting/ ERP system that uses only a web browser and a PDF reader. It contains a plethora of features that are suitable for many businesses in both large scale and small scale or retail management. It also contains Purchase orders, MRP, Multi-Currency, Standard Costing, Ghost bills, Expense claims, and PDF reports.

Q

What are the PHP extensions to be installed for WebERP?

A

The PHP extensions are as follows php70w-mysql php70w-curl php70w-json php70w-cgi php70w php70w-mcrypt php70w-xmlrpc php70w-gd for WebERP.

Related Tutorials in How to install webERP on CentOS 7

Related Tutorials in How to install webERP on CentOS 7

How To Install AnyDesk on Centos 7
How To Install AnyDesk on Centos 7
Apr 2, 2018
How to install Tiki Wiki CMS Groupware on CentOS 7
How to install Tiki Wiki CMS Groupware on CentOS 7
May 31, 2018
How to install PHP ImageMagick on CentOS 7
How to install PHP ImageMagick on CentOS 7
Nov 4, 2017
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
Jun 4, 2019
How to install Apache from Source Code on CentOS 7
How to install Apache from Source Code on CentOS 7
Oct 21, 2017
How to enable or disable repositories in CentOS
How to enable or disable repositories in CentOS
Mar 28, 2018
How to install AWStats on CentOS 7
How to install AWStats on CentOS 7
Dec 8, 2017
How to install Apache JMeter in CentOS 7
How to install Apache JMeter in CentOS 7
Mar 24, 2017

Related Forums in How to install webERP on CentOS 7

Related Forums in How to install webERP on CentOS 7

CentOS
connor class=
How To Completely Remove Apache package On CentOS 7.6
May 14, 2019
CentOS
ceriaimmaculate class=
setfacl : command not found
Jan 3, 2018
CentOS
mason class=
Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
Nov 20, 2018
CentOS
landon class=
Command to find SNMP Version
May 28, 2018
CentOS
arjitharon class=
cannot start minio service help
Mar 10, 2018
Apache tomcat
AadrikaAnshu class=
Cannot find ./catalina.sh The file is absent or does not have execute permission This file is needed to run this program
Jun 17, 2019
gitlab
caden class=
Insufficient space in download directory /var/cache/yum/x86_64/6/base/packages
Jul 22, 2019
OpenVAS
frank class=
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was 14: curl#6 - "Could not resolve host: mirrorlist.centos.org; Unknown error"
Dec 20, 2018
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Isaac ?
How to run windows application in linux

I need to run the windows application in my Linux machine, instead of installing from yum repo or any other repos. How to do that..??

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.