Cloud Service >> Knowledgebase >> Cloud Computing >> How to Install ERPNext Open Source ERP on CentOS 7
submit query

Cut Hosting Costs! Submit Query Today!

How to Install ERPNext Open Source ERP on CentOS 7

ERPNext is a free and open-source ERP software that helps businesses manage operations such as accounting, HR, inventory, and sales. Installing ERPNext on CentOS 7 involves several steps, but with a little patience, you’ll have a fully functional ERP system.

Prerequisites

CentOS 7 server with root or sudo access.

At least 2GB RAM (4GB recommended for production).

Python version 3.6+ installed.

Ensure your system is up to date:
sudo yum update -y

Step 1: Install Required Packages

Install essential tools and libraries:

sudo yum install epel-release -y

sudo yum install git python3 python3-devel mariadb-server mariadb-devel -y

Step 2: Configure MariaDB

Start and secure MariaDB:

sudo systemctl start mariadb

sudo mysql_secure_installation

Set up a new database for ERPNext:

mysql -u root -p

CREATE DATABASE erpnext;

CREATE USER 'erpuser'@'localhost' IDENTIFIED BY 'yourpassword';

GRANT ALL PRIVILEGES ON erpnext.* TO 'erpuser'@'localhost';

FLUSH PRIVILEGES;

EXIT;

Step 3: Install Bench

Bench is the command-line tool for managing ERPNext:

sudo pip3 install frappe-bench

bench init erpnext

cd erpnext

Step 4: Install ERPNext

Create a new site:

bench new-site yoursite.local

Add ERPNext:

bench get-app erpnext

bench install-app erpnext

Step 5: Start the Server

Launch the ERPNext development server:

bench start

Access ERPNext via your browser at http://your-server-ip:8000.

Conclusion

ERPNext offers a robust solution for businesses to streamline their operations. By following the steps above, you’ll have ERPNext running on CentOS 7 in no time.

For cloud hosting solutions optimized for ERPNext, Cyfuture Cloud provides scalable and secure platforms to power your business applications. Explore our offerings today!

Cut Hosting Costs! Submit Query Today!

Grow With Us

Let’s talk about the future, and make it happen!