Installation of OdooErp Software on Ubuntu 15.04

Описание к видео Installation of OdooErp Software on Ubuntu 15.04

This Video demonstrates step by step deployment of Odoo Erp Software on Ubuntu 15.04

Website: www.odoo.com

Steps are as follows:

Deployment of OdooErp CRM Based Software on Ubuntu 15.04

Prerequisites:

Install a Fresh Ubuntu 15.04 on Vmware Workstation

Step 1: Update the System
#apt-get update

Step 2: Install Python Libraries
#apt-get install -y python-decorator python-docutils python-feedparser python-imaging python-ldap python-libxslt1 python-mako python-mock python-openid python-passlib python-psutil python-pybabel

Step 3: Correct the Python Libraries to correct some unmet dependencies
#apt-get -f install

Step 4: Installing PostgreSQL
#apt-get install tasksel
#tasksel

(Select PostgreSQL Database)

Step 5: Installing Web Server- Apache
#apt-get install apache2
#service apache2 status

Check the Status of Apache Web Server
http://ipaddress

Step 6: Installing Odoo (OpenERP)
A. Download the latest Package
#wget http://nightly.odoo.com/8.0/nightly/d...

B. Installing Package using dpkg command
#dpkg -i odoo_8.0.latest_all.deb

Step 7: Configuring Odoo OpenERP Application
#vim /etc/odoo/openerp-server.conf
Under Options
Change the admin password etc. other information

[options]
; This is the password that allows database operations:
; admin_passwd = admin
db_host = False
db_port = False
db_user = odoo
db_password = anand123
addons_path = /usr/lib/python2.7/dist-packages/openerp/addons

Step 8: Starting Odoo Service
#service odoo restart
#service odoo status

Step 9: Starting the Web Interface

http://ipaddress:8069

Create the Database

Click on Project Management- Install

Комментарии

Информация по комментариям в разработке