Nginx   发布时间:2022-05-11  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了nginx – 异常:bus.Bus不可用 – Odoo 10大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

目前,我在不同的机器上有两个不同的数据库,显示下面的错误.第一次出现是几个月前,偶尔出现在日志中,有时连续多次出现,其他时间只出现一天.

只有在运行带有proxy_mode = True和/或工作人员数量的odoo时才会发生这种情况. 0.禁用代理时,错误停止.

TraceBACk (most recent call last):
  File "/odoo/odoo-server/odoo/http.py",line 638,in _handle_exception
    return super(Jsonrequest,self)._handle_exception(exception)
  File "/odoo/odoo-server/odoo/http.py",line 675,in dispatch
    result = self._call_function(**self.params)
  File "/odoo/odoo-server/odoo/http.py",line 331,in _call_function
    return checked_call(self.db,*args,**kwargs)
  File "/odoo/odoo-server/odoo/service/model.py",line 119,in wrapper
    return f(dbname,**kwargs)
  File "/odoo/odoo-server/odoo/http.py",line 324,in checked_call
    result = self.endpoint(*a,**kw)
  File "/odoo/odoo-server/odoo/http.py",line 933,in __call__
    return self.method(*args,line 504,in response_wrap
    response = f(*args,**kw)
  File "/odoo/odoo-server/addons/bus/controllers/main.py",line 35,in poll
    raise Exception("bus.bus unavailable")
Exception: bus.bus unavailable

这是我目前的Nginx配置:

upstream odoo10 {
    server myipaddres:8069 weight=1 fail_timeout=0;
}

upstream odoo10-im {
    server myipaddres:8072 weight=1 fail_timeout=0;
}

## http redirects to https ##
server {
    listen 80;
    server_name mydomain.com;

    # Strict Transport Security
    add_header Strict-Transport-Security max-age=2592000;

    rewrite ^/.*$https://$host$request_uri? peRMANent;
}

server {
    # server port and name
    listen 443 ssl;
    server_name mydomain.com;

    # Specifies the maximum accepted body size of a client request,# as inDicated by the request header Content-Length.
    client_max_body_size 200m;

    # add ssl specific setTings
    keepalive_timeout 60;
    ssl on;
    ssl_certificate /etc/ssl/Nginx/mydomain.crt;
    ssl_certificate_key /etc/ssl/Nginx/mydomain.key;

    # limit ciphers
    ssl_ciphers HIGH:!ADH:!MD5;
    ssl_protocols SSLv3 TLSv1;
    ssl_prefer_server_ciphers on;

    # increase proxy buffer to handle some OpenERP web requests 
    proxy_buffers 16 64k;
    proxy_buffer_size 128k;

    #general proxy setTings
    # force timeouts if the BACkend dies
    proxy_connect_timeout 600s;
    proxy_send_timeout 600s;
    proxy_read_timeout 600s;

    proxy_next_upstream error timeout invalid_header http_500 http_502 http_503;

    # set headers
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-ForWARD-For $proxy_add_x_forWARDed_for;

    # Let the OpenERP web service kNow that we’re using httpS,otherwise
    # it will generate URL using http:// and not https://
    proxy_set_header X-ForWARDed-Proto https;

    # by default,do not forWARD anything
    proxy_redirect off;
    proxy_buffering off;

    LOCATIOn / {
        proxy_pass http://odoo10;
    }

    LOCATIOn /longpolling {
        proxy_pass http://odoo10-im;
    }

    # cache some static data in memory for 60mins.
    # under heavy load this should relieve stress on the OpenERP web interface a bit.

    LOCATIOn /web/static/ {
        proxy_cache_valid 200 60m;
        proxy_buffering on;
        expires 864000;
        proxy_pass http://odoo10;
    }

}

以及与性能相关的etc / odoo-conf的相关部分:

[options] 
# ...
db_maxconn = 64  
limit_memory_hard = 2684354560 
limit_memory_soft = 2147483648 
limit_request = 8192 
limit_time_cpu = 600 limit_time_real = 1200 limit_time_real_cron = 2400
max_cron_threads = 2 
osv_memory_age_limit = 1.0 
osv_memory_count_limit = false 
proxy_mode = True 
workers = 5 xmlrpc = True 
xmlrpc_interface = myipaddress 
netrpc_interface = myipaddress
# ...

目前正在数字海洋基础设施上运行,在具有2GB RAM和2个cpu核心的机器上运行.

在您的Nginx.conf文件中,添加以下行:

LOCATIOn /longpolling {
proxy_pass http://127.0.0.1:8072;
}
LOCATIOn / {
    proxy_pass http://127.0.0.1:8069;
}

大佬总结

以上是大佬教程为你收集整理的nginx – 异常:bus.Bus不可用 – Odoo 10全部内容,希望文章能够帮你解决nginx – 异常:bus.Bus不可用 – Odoo 10所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:目前