Closed azeemism closed 2 years ago
UPDATE: I am no longer certain if this is an issue.
I was unable to login to the Odoo server, and the only error I found in the log was related to the OCA/connector
. As it turned out, I didn't have connector installed or setup to use jobrunner, but I keep the module updated and it is in the addons_path
of my odoo-server.conf
file. I would expect that if the module in not installed or setup to use jobrunner, the error should not appear in the log.
After rolling back all updates it turned out that I was unable to check/login to the server because of,
OCA/OCB#778 that required an update to dbfilter
and db_name
in the odoo-server.conf
file.
Changed:
;db_name=erp-server-com
dbfilter=^%h$
list_db = True
proxy_mode = True
To:
db_name=erp-server-com
dbfilter=^erp-server-com$
list_db = False
proxy_mode = True
I created a pull request, that fix that issus. Main reason is that when starting odoo with workers the preforkinit is not triggers at first. So when using this without connector channels the change of if clause will fix this issue. Pull Request #346
There hasn't been any activity on this issue in the past 6 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. If you want this issue to never become stale, please ask a PSC member to apply the "no stale" label.
Starting the server with
DAEMON_ARGS="-c ${CONFIG} -u all -d erp-server-com"
after updating the connector tohttps://github.com/OCA/connector/commit/13412806e24e57a74268c527ba726320424e055f
result in the following error:
This may be related to #288 or #302.
Am I supposed to add something to my server config file to avoid this issue? If so what exactly do I need to do?
If I do get Odoo started, I am also unable to login from
erp.server.com
as when I load the url it automatically transports me tohttps://erp.server.com/web/database/manager#action=database_manager
Thanks for your support.