-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Install ERPNext on RedHat based systems
Anand Doshi edited this page May 23, 2013
·
15 revisions
sudo su
cd ~
yum update python -y
yum install python-setuptools MySQL-python httpd mysql mysql-server mysql-devel git memcached -y
easy_install pip
pip install pytz python-dateutil jinja2 markdown2 termcolor python-memcached requests chardet dropbox google-api-python-client pygeoip
service httpd start
service mysqld start
memcached -d -l 127.0.0.1 -p 11211 -m 64 -u apache
mysqladmin -u root password [NEW PASSWORD]
memcached -d -l 127.0.0.1 -p 11211 -m [64 or more mb of ram] -u apache
yum install ntp vim screen -y
service ntpd start
wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
rpm -i http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
yum install htop -y
If you are using CPanel, you are likely to face perl dependency issues when installing git. To install git in this case, follow this procedure:
-
vim /etc/yum.conf
, remove perl* from exclude list and save the file yum install git -y
-
vim /etc/yum.conf
, add perl* back to exclude list and save the file