17.0 Can't be reached
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.
Same. Just doesnt work, tired everything!
Try the higher Ubuntu version, it is a Python version problem
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