Posted by: sutrisno | October 28, 2014

Install Odoo (Open ERP v8) on Ubuntu 14.04 from launchpad

openerp
OpenERP adalah aplikasi ERP (Enterprise Resources Planning) modern dan lengkap yang didistribusikan secara open source yang didalamnya terdapat berbagai program aplikasi bisnis termasuk Sales, CRM, Project Management, Warehouse Management, Manufacturing, Finance and Accounting, Human Resources dan lain sebagainya.
Di OpenERP, sistem pengelolaan bisnis terpadu (Enterprise Resource Planning – ERP) yang memiliki berbagai aplikasi bisnis seperti Sales, Purchase, Customer Relationship Management (CRM), Human Resource Management (HRM), Business Intelligence, Manufacturing, Warehouse Management dll. Saat ini tersedia lebih dari 2000 modul yang siap digunakan.
OpenERP dibangun menggunakan teknologi framework Open Object yang memiliki kekuatan arsitektur MVC (Model View Controller), Workflow atau AlurKerja Proses yang fleksibel, GUI yang dinamis, antarmuka XML-RPC dan sistem pelaporan yang dapat dikustomisasi sesuai dengan kebutuhan.

sudo apt-get update —> Update apt source list
sudo apt-get upgrade —> Download and Install Updates
required packages
sudo apt-get install graphviz ghostscript postgresql-client python-dateutil python-feedparser python-matplotlib python-ldap python-libxslt1 python-lxml python-mako python-openid python-psycopg2 python-pybabel python-pychart python-pydot python-pyparsing python-reportlab python-simplejson python-tz python-vatnumber python-vobject python-webdav python-werkzeug python-xlwt python-yaml python-imaging
support packages
sudo apt-get install gcc python-dev mc bzr python-setuptools python-babel python-feedparser python-reportlab-accel python-zsi python-openssl python-egenix-mxdatetime python-jinja2 python-unittest2 python-mock python-docutils lptools make python-psutil python-paramiko poppler-utils python-pdftools antiword postgresql

Install gdata client
wget http://gdata-python-client.googlecode.com/files/gdata-2.0.17.tar.gz
tar zxvf gdata-2.0.17.tar.gz
cd gdata-2.0.17/
sudo python setup.py install

sudo adduser odoo –home /opt/odoo

cd ..
sudo -u postgres createuser -s odoo —-> Create database user for Odoo
sudo su odoo
mkdir /opt/odoo/v8
cd /opt/odoo/v8
bzr branch lp:~openerp/openerp-web/saas-4 web
bzr branch lp:~openerp/openobject-server/saas-4 server
bzr branch lp:~openerp/openobject-addons/saas-4 addons

exit
sudo cp /opt/odoo/v8/server/install/openerp-server.conf /etc/openerp-server.conf
sudo nano /etc/openerp-server.conf
——-defaultnya—–
[options]
; This is the password that allows database operations:
; admin_passwd = admin
db_host = False
db_port = False
db_user = openerp
db_password = False

———————-
Configure file as below

[options]
; This is the password that allows database operations:
admin_passwd = PASSWORD
db_host = False
db_port = False
db_user = odoo
db_password = False
addons_path = /opt/odoo/v8/addons,/opt/odoo/v8/web/addons
;Log settings
logfile = /var/log/openerp/openerp-server.log
log_level = error

sudo chown odoo: /etc/openerp-server.conf
sudo chmod 640 /etc/openerp-server.conf
sudo mkdir /var/log/openerp
sudo chown odoo:root /var/log/openerp
sudo cp /opt/odoo/v8/server/install/openerp-server.logrotate /etc/logrotate.d/openerp-server
sudo chmod 755 /etc/logrotate.d/openerp-server
Run the server
sudo su odoo
cd /opt/odoo/v8/server/
./openerp-server -c /etc/openerp-server.conf &
http://localhost:8069

source: http://pulse7.net/openerp/install-odoo-open-erp-v8-ubuntu-12-04-launchpad/


Leave a comment

Categories