Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

How to install OpenERP 8 using mod_wsgi?

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
v8installationservermod_wsgi
5 Réponses
21575 Vues
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
Ignorer
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
Meilleure réponse

 

please check the link for more information

Deploye WSGI in Odoo.

3
Avatar
Ignorer
Avatar
Madura
Meilleure réponse

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

0
Avatar
Ignorer
Avatar
lam nguyen
Meilleure réponse

Hi Casper Madsen,

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

 

Thanks.

0
Avatar
Ignorer
Avatar
Christian SONDI
Meilleure réponse

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
Ignorer
Avatar
John Doe
Meilleure réponse

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
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
Which server needs for 50 users? Résolu
v8 server
Avatar
1
mars 15
4441
Installing Odoo V8 FreeBSD
v8 installation
Avatar
0
mars 15
6531
How to install odoo 8 on ubuntu 14.04? Résolu
v8 installation
Avatar
Avatar
Avatar
Avatar
Avatar
4
déc. 23
17116
is it possible to automatic updates after installing version 8 trunk
v8 installation
Avatar
0
mars 15
4377
Multiple odoo server sharing same database ? Résolu
installation server multicompany
Avatar
Avatar
1
sept. 24
13425
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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