Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

How to install OpenERP 8 using mod_wsgi?

Subscribe

Get notified when there's activity on this post

This question has been flagged
v8installationservermod_wsgi
5 Replies
21569 Views
Avatar
Jaze

I would like to install OpenERP v8 using mod_wsgi on Apache. It should be accessible on a public domain using port 80. I keep getting 'No handler found'.

I found the instructions on how to install it with Apache/Nginx using proxy, however even openerp:service.wsgi_server.application() indicates that using proxy_mode is a 'fix'.

Has anybody installed OpenERP + Apache + mod_wsgi?

Here are the steps of my installation:

  1. Install the necessary Python libraries for the server:

    sudo apt-get install python-dateutil python-docutils python-feedparser python-gdata python-jinja2 python-ldap python-libxslt1 python-lxml python-mako python-mock python-openid python-psycopg2 python-psutil python-pybabel python-pychart python-pydot python-pyparsing python-reportlab python-simplejson python-tz python-unittest2 python-vatnumber python-vobject python-webdav python-werkzeug python-xlwt python-yaml python-zsi

  2. Create the OpenERP user that will own and run the application:

    sudo adduser --system --home=/opt/openerp --group openerp

  3. Install and configure the database server, PostgreSQL:

    sudo apt-get install postgresql

    sudo su - postgres

    createuser --createdb --username postgres --no-createrole --no-superuser --pwprompt openerp

    Password: openerp
    

    exit

  4. Install the OpenERP server:

    wget hppt://nightly.openerp.com/trunk/nightly/src/openerp-8.0dev-latest.tar.gz

    cd /opt/openerp

    sudo tar xvf ~/openerp-8.0dev-latest.tar.gz

    sudo chown -R openerp: *

    sudo cp -a openerp-8.0dev-20140214-000101 server

  5. Install Apache:

    sudo apt-get install apache2

    sudo apt-get install libapache2-mod-wsgi

    sudo nano /etc/apache2/apache2.conf

    ServerName localhost
    
  6. Virtual host configuration:

    sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/example.com.conf

    sudo nano /etc/apache2/sites-available/example.com.conf

    ServerName localhost
    
    WSGIScriptAlias / /opt/openerp/server/openerp-wsgi.py
    WSGIDaemonProcess oe user=openerp group=users processes=2 python-path=/opt/openerp/server/ display-name=apache-openerp
    WSGIProcessGroup oe
    
    <Directory /opt/openerp/server>
        AllowOverride All
        Require all granted
    </Directory>
    

    sudo a2dissite 000-default.conf

    sudo a2ensite example.com.conf

    sudo service apache2 restart

  7. Configuring the OpenERP application:

    sudo nano /opt/openerp/server/openerp-wsgi.py

    conf['logfile'] = '/var/log/openerp/openerp-server.log'
    
    conf['addons_path'] = '/opt/openerp/server/openerp/addons'
    
    conf['db_password'] = 'openerp'
    

    sudo mkdir /var/log/openerp

    sudo chown openerp:root /var/log/openerp

    sudo service apache2 restart

2
Avatar
Discard
Simplify it!

Hello. Did you make it work?

Mind And Go

Same question, I still stucked because the wsgy script don't recognise openerp : https://www.odoo.com/forum/Help-1/question/OpenERP-8--mod_wsgi--No-module-named-openerp--addon-path-issue-53079 Any advice on the conf file and directory structure?

Avatar
Prathmesh Baliram Doiphode
Best Answer

 

please check the link for more information

Deploye WSGI in Odoo.

3
Avatar
Discard
Avatar
Madura
Best Answer

Thank you for the post, It was helped to install and configure the OpenERP v8... :)

0
Avatar
Discard
Avatar
lam nguyen
Best Answer

Hi Casper Madsen,

Could you share how to using uwsgi nginx on v8 trunk?

 

Thanks.

0
Avatar
Discard
Avatar
Christian SONDI
Best Answer

Hi!

What to do at the point 6?

ServerName localhost WSGIScriptAlias / /opt/openerp/server/openerp-wsgi.py WSGIDaemonProcess oe user=openerp group=users processes=2 python-path=/opt/openerp/server/ display-name=apache-openerp WSGIProcessGroup oe <Directory /opt/openerp/server> AllowOverride All Require all granted </Directory>

Need to be the content of the file "example.com.conf" or must be added to the prevew content of the "000-default.com.conf" in "example.com.conf"?

0
Avatar
Discard
Avatar
John Doe
Best Answer

I've successfully installed trunk (v8) with uWSGI / Nginx. Works like a charm.. Here is my config from openerp-wsgi.py - you might be missing db_name?


import openerp openerp.multi_process = True # Nah! openerp.conf.server_wide_modules = ['web'] conf = openerp.tools.config

conf['addons_path'] = '/opt/openerp/blahblah/data/addons/8.0,/opt/openerp/blahblah/server/current/openerp/addons' conf['admin_passwd'] = 'secretpassword' conf['data_dir'] = '/opt/openerp/blahblah/data' conf['db_name'] = 'blahblah' conf['db_host'] = 'localhost' conf['db_user'] = 'secretuser' conf['db_port'] = '5432' conf['db_password'] = 'othersecretpassword' conf['dbfilter'] = '^blahblah$' conf['list_db'] = False conf['logfile'] = '/opt/openerp/blahblah/logs/blahblah.log'

application = openerp.service.wsgi_server.application openerp.service.server.load_server_wide_modules()

0
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
Which server needs for 50 users? Solved
v8 server
Avatar
1
Mar 15
4441
Installing Odoo V8 FreeBSD
v8 installation
Avatar
0
Mar 15
6530
How to install odoo 8 on ubuntu 14.04? Solved
v8 installation
Avatar
Avatar
Avatar
Avatar
Avatar
4
Dec 23
17114
is it possible to automatic updates after installing version 8 trunk
v8 installation
Avatar
0
Mar 15
4376
Multiple odoo server sharing same database ? Solved
installation server multicompany
Avatar
Avatar
1
Sep 24
13424
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now