Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

How to install OpenERP 8 using mod_wsgi?

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
v8installationservermod_wsgi
5 Antwoorden
21585 Weergaven
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
Annuleer
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
Beste antwoord

 

please check the link for more information

Deploye WSGI in Odoo.

3
Avatar
Annuleer
Avatar
Madura
Beste antwoord

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

0
Avatar
Annuleer
Avatar
lam nguyen
Beste antwoord

Hi Casper Madsen,

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

 

Thanks.

0
Avatar
Annuleer
Avatar
Christian SONDI
Beste antwoord

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
Annuleer
Avatar
John Doe
Beste antwoord

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
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
Which server needs for 50 users? Opgelost
v8 server
Avatar
1
mrt. 15
4441
Installing Odoo V8 FreeBSD
v8 installation
Avatar
0
mrt. 15
6537
How to install odoo 8 on ubuntu 14.04? Opgelost
v8 installation
Avatar
Avatar
Avatar
Avatar
Avatar
4
dec. 23
17122
is it possible to automatic updates after installing version 8 trunk
v8 installation
Avatar
0
mrt. 15
4382
Multiple odoo server sharing same database ? Opgelost
installation server multicompany
Avatar
Avatar
1
sep. 24
13427
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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