Openerp5.0 Installation on Ubuntu

Here I am describing some quicksteps to setup openerp in your fresh ubuntu OS.  
For more detail regarding any step, you can check openerp installation guide.
3 simple steps to follow:

A) Necessary libraries for oepnerp server-gtkclient: 
    key in below given lines on gnome-terminal of ubuntu:
     $ sudo su
     $ apt-get install python-setuptools
     $ apt-get install python-dev
     $ apt-get install build-essential
     $ apt-get install python-lxml
     $ apt-get install python-psycopg2
     $ apt-get install python-reportlab
     $ apt-get install python-matplotlib
     $ apt-get install python-pychart
     $ apt-get install python-hippocanvas
     $ apt-get install bzr

B) Postgres Installation:
     
     $ apt-get install postgresql

    Create a role in PostgreSQL without any password with the same name as the Linux user who is going to run  
     the openerp-server:
     $ sudo su postgres -c "createuser -d -S -R openerp"

Checkout 5.0 stable,server,gtk-client and webclient

     $ bzr branch lp:openobject-server/5.0 openerp-server
     $ bzr branch lp:openobject-client/5.0 openerp-client
     $ bzr branch lp:openobject-client-web/5.0 openerp-web

C) Install dependencies required for webclient(openerp-web)
     $ cd /path/to/openerp-web/lib
     $ ./populate.sh
     $ cd ..

     This will install all required dependencies in private lib directory, and you don’t need to install anything..
That's it.!!

Now, Start openerp-server: 
   $ cd openerp-server/bin
    $ python openerp-server.py

Start openerp-webclient:
    $ cd openerp-web
    $ ./openerp-web.py

Enjoy Experience with OpenERP...


Comments

  1. how to i make daemon service for openerp?

    ReplyDelete
  2. Hi Ken Vac, I have posted scripts to create daemon service for openerp, check my scripts label, you can find there your answer.

    ReplyDelete

Post a Comment

Popular posts from this blog

OpenERP 7 installation

Geeta - Sea of divine knowledge and Motivation for Life time

Startup Script for openerp-server