Skip to Content
Menu
This question has been flagged
1 Reply
13181 Views

I try to create a new database but the server show me this message:

 

Odoo Server Error
Traceback (most recent call last):
  File "/opt/odoo/openerp/http.py", line 518, in _handle_exception
    return super(JsonRequest, self)._handle_exception(exception)
  File "/opt/odoo/openerp/http.py", line 539, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/openerp/http.py", line 295, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/openerp/http.py", line 292, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/openerp/http.py", line 755, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/openerp/http.py", line 388, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/addons/web/controllers/main.py", line 694, in create
    params['create_admin_pwd'])
  File "/opt/odoo/openerp/http.py", line 831, in proxy_method
    result = dispatch_rpc(self.service_name, method, args)
  File "/opt/odoo/openerp/http.py", line 108, in dispatch_rpc
    result = dispatch(method, params)
  File "/opt/odoo/openerp/service/db.py", line 62, in dispatch
    security.check_super(passwd)
  File "/opt/odoo/openerp/service/security.py", line 33, in check_super
    raise openerp.exceptions.AccessDenied()
AccessDenied: Access denied.

Avatar
Discard
Best Answer

As the error message indicates, there is an authentication error.

Check that the account and password Odoo is using to access PostgreSQL is correct.  This is defined in the configuration file which is either /etc/odoo-server.conf or ~/.openerp_serverrc (if the master password has been changed via the UI).

Avatar
Discard