Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

Bus Unavailable

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
workers
6 Respuestas
13842 Vistas
Avatar
Shashank Verma

I am getting error when adding workers to conf file.

raise Exception("bus.Bus unavailable")
Exception: bus.Bus unavailable

*I have configured apache,

* Odoo running on https

* long polling port 8072 added on conf file

*reverse_proxy=True on conf file

How to solve this issue ?

1
Avatar
Descartar
Avatar
Gerald van Beuningen
Mejor respuesta

In addition to the earlier answer it can be stated that the longpolling related Proxy directives must be specified in the Apache conf file of your vhost before the main Proxy directives (i.e. those related to port 8069). For details see section 'Overlapping Webspace' in https://httpd.apache.org/docs/2.4/sections.html

2
Avatar
Descartar
Avatar
Paresh Wagh
Mejor respuesta

Hi Shashank:

Include the following settings in your apache conf file (for example, /etc/apache2/sites-available/yourdomain.com.conf) by replacing yourdomain.com with your own domain name and restart apache.

ProxyPass /longpolling http://yourdomain.com:8072/
ProxyPassReverse /longpolling http://yourdomain.com:8072/

-1
Avatar
Descartar
Shashank Verma
Autor

No success.

<VirtualHost *:443>

ServerName odoo.sandbox.com

ServerAlias odoo.sandbox.com

LogLevel warn

ErrorLog /var/log/apache2/odoo.sandbox.com:8069.error.log

CustomLog /var/log/apache2/odoo.sandbox.com:8069.access.log combined

SSLEngine on

SSLProxyEngine on

SSLCertificateFile /etc/apache2/ssl/4gg366776735c4.crt

SSLCertificateKeyFile /etc/apache2/ssl/sandbox.key

ProxyPreserveHost On

ProxyPass / http://odoo.sandbox.com:8069/ retry=0

ProxyPassReverse / http://odoo.sandbox.com:8069/

</VirtualHost>

Paresh Wagh

I don't see any ProxyPass / ProxyPassReverse lines for port 8072 in what you have posted ?

You need to add the 2 lines mentioned in my earlier post for longpolling to work with workers. These lines instruct Apache to redirect requests made to /longpolling to port 8072.

Avatar
Ajeet Yadav (Softprime Consulting Pvt Ltd)
Mejor respuesta

You need to pass proxy_mode = True in odoo conf file.

-1
Avatar
Descartar
Shashank Verma
Autor

No success.Below is my conf file

[options]

admin_passwd = admin

db_host = False

db_port = False

db_user = odoolive

db_password = FALSE

addons_path = /opt/odoo/odoo-12.0/addons/,/opt/odoo/odoo-12.0/odoo-enterprise/

dbfilter = odoo12

;Uncomment the following line to enable a custom log

logfile = /srv/log.log

xmlrpc_port = 8069

longpolling_port = 8072

proxy_mode = True

;filestore

data_dir = /srv/filestore

;Worker Settings

limit_memory_hard = 2097152000

limit_memory_soft = 1677721600

limit_request = 16384

limit_time_cpu = 3600

limit_time_real = 7200

max_cron_threads = 2

workers = 2

¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
Multi Processing configuration for multiple instance! Resuelto
configuration workers
Avatar
Avatar
Avatar
2
dic 24
18821
Workers not work
cloud workers
Avatar
0
ene 24
2358
How many "Workers" do I need with Odoo.sh? Resuelto
workers odoo.sh
Avatar
Avatar
1
abr 24
44030
Odoo12: Help on tunning up odoo config file Resuelto
nginx workers
Avatar
Avatar
1
may 25
24380
Odoo http workers stuck in a Query
postgresql workers
Avatar
0
ago 22
2985
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

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