Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Not Found] when trying to visit URL only when installing enterprise #394

Closed
Moonif opened this issue May 24, 2023 · 2 comments
Closed

[Not Found] when trying to visit URL only when installing enterprise #394

Moonif opened this issue May 24, 2023 · 2 comments

Comments

@Moonif
Copy link

Moonif commented May 24, 2023

Hello,

Thank you very much for this awesome script.

Unfortunately, I'm facing an issue:
Installing Odoo with default settings, works perfectly fine, but when setting Is_Enterprise to True, everything is installed correctly, all enterprise addons are present (I'm an Odoo partner), but the thing is visiting the (Digitalocean droplet) IP address, I get a "Not Found" web page.
As mentioned earlier, I'm using DigitalOcean, I tried with multiple settings, deleted projects, droplets, but always the same result.

Can you please help?

@Moonif Moonif changed the title [Not Found] when trying to visiting URL only when installing enterprise [Not Found] when trying to visit URL only when installing enterprise May 24, 2023
@Moonif
Copy link
Author

Moonif commented May 24, 2023

Log:

2023-05-24 18:38:04,119 48892 INFO ? odoo: Odoo version 16.0
2023-05-24 18:38:04,119 48892 INFO ? odoo: Using configuration file at /etc/odoo-server.conf
2023-05-24 18:38:04,119 48892 INFO ? odoo: addons paths: ['/odoo/odoo-server/odoo/addons', '/odoo/.local/share/O>
2023-05-24 18:38:04,120 48892 INFO ? odoo: database: default@default:default
2023-05-24 18:38:04,301 48892 INFO ? odoo.addons.base.models.ir_actions_report: Will use the Wkhtmltopdf binary >
2023-05-24 18:38:04,403 48892 CRITICAL ? odoo.modules.module: Couldn't load module base
2023-05-24 18:38:04,403 48892 CRITICAL ? odoo.modules.module: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSU>
2023-05-24 18:38:04,403 48892 ERROR ? odoo.service.server: Failed to load server-wide module base.
Traceback (most recent call last):
File "/odoo/odoo-server/odoo/service/server.py", line 1248, in load_server_wide_modules
odoo.modules.module.load_openerp_module(m)
File "/odoo/odoo-server/odoo/modules/module.py", line 432, in load_openerp_module
import('odoo.addons.' + module_name)
File "/odoo/odoo-server/odoo/addons/base/init.py", line 5, in
from . import models
File "/odoo/odoo-server/odoo/addons/base/models/init.py", line 21, in
from . import ir_mail_server
File "/odoo/odoo-server/odoo/addons/base/models/ir_mail_server.py", line 19, in
from OpenSSL import crypto as SSLCrypto
File "/usr/local/lib/python3.8/dist-packages/OpenSSL/init.py", line 8, in
from OpenSSL import crypto, SSL
File "/usr/local/lib/python3.8/dist-packages/OpenSSL/crypto.py", line 1556, in
class X509StoreFlags(object):
File "/usr/local/lib/python3.8/dist-packages/OpenSSL/crypto.py", line 1577, in X509StoreFlags
CB_ISSUER_CHECK = _lib.X509_V_FLAG_CB_ISSUER_CHECK
AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK'
2023-05-24 18:38:04,419 48892 CRITICAL ? odoo.modules.module: Couldn't load module web
2023-05-24 18:38:04,419 48892 CRITICAL ? odoo.modules.module: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSU>
2023-05-24 18:38:04,419 48892 ERROR ? odoo.service.server: Failed to load server-wide module web.
The web module is provided by the addons found in the openerp-web project.
Maybe you forgot to add those addons in your addons_path configuration.
Traceback (most recent call last):
File "/odoo/odoo-server/odoo/service/server.py", line 1248, in load_server_wide_modules
odoo.modules.module.load_openerp_module(m)
File "/odoo/odoo-server/odoo/modules/module.py", line 432, in load_openerp_module
import('odoo.addons.' + module_name)
File "/odoo/odoo-server/addons/web/init.py", line 4, in
from . import controllers
File "/odoo/odoo-server/addons/web/controllers/init.py", line 5, in
from . import database
File "/odoo/odoo-server/addons/web/controllers/database.py", line 19, in
from odoo.addons.base.models.ir_qweb import render as qweb_render
File "/odoo/odoo-server/odoo/addons/base/init.py", line 5, in
from . import models
File "/odoo/odoo-server/odoo/addons/base/models/init.py", line 21, in
from . import ir_mail_server
File "/odoo/odoo-server/odoo/addons/base/models/ir_mail_server.py", line 19, in
from OpenSSL import crypto as SSLCrypto
File "/usr/local/lib/python3.8/dist-packages/OpenSSL/init.py", line 8, in
from OpenSSL import crypto, SSL
File "/usr/local/lib/python3.8/dist-packages/OpenSSL/crypto.py", line 1556, in
class X509StoreFlags(object):
File "/usr/local/lib/python3.8/dist-packages/OpenSSL/crypto.py", line 1577, in X509StoreFlags
CB_ISSUER_CHECK = _lib.X509_V_FLAG_CB_ISSUER_CHECK
AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK'
2023-05-24 18:38:04,423 48892 INFO ? odoo.service.server: HTTP service (werkzeug) running on alhayah:8069
2023-05-24 18:38:49,343 48892 INFO ? werkzeug: 5.37.121.53 - - [24/May/2023 18:38:49] "GET / HTTP/1.0" 404 - 1 0>
2023-05-24 18:38:49,610 48892 INFO ? werkzeug: 5.37.121.53 - - [24/May/2023 18:38:49] "GET /favicon.ico HTTP/1.0>
2023-05-24 18:38:56,131 48892 INFO ? werkzeug: 5.37.121.53 - - [24/May/2023 18:38:56] "GET / HTTP/1.1" 404 - 1 0>
2023-05-24 18:38:56,366 48892 INFO ? werkzeug: 5.37.121.53 - - [24/May/2023 18:38:56] "GET /favicon.ico HTTP/1.1>

@noblesocius
Copy link

#393
Looks like the same issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants