Get 69% Off on Cloud Hosting : Claim Your Offer Now!
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.
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
Install essential tools and libraries:
sudo yum install epel-release -y
sudo yum install git python3 python3-devel mariadb-server mariadb-devel -y
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;
Bench is the command-line tool for managing ERPNext:
sudo pip3 install frappe-bench
bench init erpnext
cd erpnext
Create a new site:
bench new-site yoursite.local
Add ERPNext:
bench get-app erpnext
bench install-app erpnext
Launch the ERPNext development server:
bench start
Access ERPNext via your browser at http://your-server-ip:8000.
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!
Let’s talk about the future, and make it happen!
By continuing to use and navigate this website, you are agreeing to the use of cookies.
Find out more