InstallScript icon indicating copy to clipboard operation
InstallScript copied to clipboard

17.0 Can't be reached

Open samerjawadi opened this issue 1 year ago • 3 comments

Hello everyone,

I tried to install Odoo 17.0 on an Ubuntu 20.04.6 server. I have previously installed Odoo versions 14 and 15, and they work like a charm. However, when I attempted to install versions 16 and 17, they did not work. During the installation process, I encountered no errors, and the Odoo service is running.

In the configuration, I left everything as per the default file and only enabled INSTALL_NGINX and ENABLE_SSL. However, when I try to connect, it says "Site can't be reached." Additionally, when I check the log file in /var/log/odoo/, it is empty; there is no log file generated.

samerjawadi avatar Aug 24 '24 20:08 samerjawadi

Same. Just doesnt work, tired everything!

pedro639 avatar Sep 14 '24 04:09 pedro639

Try the higher Ubuntu version, it is a Python version problem

Atteqany avatar Oct 17 '24 08:10 Atteqany

It is most likely an issue in installing requirements.txt

Try running the line that installs the requirements.txt and check for error

That was my issue, checkout related https://github.com/odoo/odoo/issues/187021

I am using Odoo 16 on Ubuntu 22.04 my fix was an edit to the requirements.txt (note you will have to make a copy from the online version and modify it)

#gevent==21.8.0 ; sys_platform != 'win32' and python_version > '3.9' and python_version <= '3.10'  # (Jammy)
gevent==21.12.0 ; sys_platform != 'win32' and python_version > '3.9' and python_version <= '3.10'  # (Jammy)

then reinstall the requirements.txt file, should then work

yogistraAnderson avatar Feb 11 '25 21:02 yogistraAnderson