Comments on: How to Install Odoo 17 on Ubuntu 22.04 https://www.rosehosting.com/blog/how-to-install-odoo-17-on-ubuntu-22-04/ Premium Linux Tutorials Since 2001 Mon, 15 Apr 2024 06:59:10 +0000 hourly 1 https://wordpress.org/?v=6.5.2 By: admin https://www.rosehosting.com/blog/how-to-install-odoo-17-on-ubuntu-22-04/#comment-49111 Mon, 15 Apr 2024 06:59:10 +0000 https://www.rosehosting.com/blog/?p=47412#comment-49111 In reply to cristian.

If you need to add the odoo17 user to the sudo group, you can do it with the following command:
usermod -aG sudo odoo17

You can check our full tutorial on how to create a sudo user at:
https://www.rosehosting.com/blog/how-to-create-a-sudo-user-on-ubuntu-22-04/

]]>
By: cristian https://www.rosehosting.com/blog/how-to-install-odoo-17-on-ubuntu-22-04/#comment-49109 Sat, 13 Apr 2024 19:21:12 +0000 https://www.rosehosting.com/blog/?p=47412#comment-49109 have you tried following this tutorial? some command require elevated privileges and odoo17 user is not in the sudoers group: useradd -m -U -r -d /opt/odoo17 -s /bin/bash odoo17

]]>
By: admin https://www.rosehosting.com/blog/how-to-install-odoo-17-on-ubuntu-22-04/#comment-49105 Sat, 06 Apr 2024 12:02:41 +0000 https://www.rosehosting.com/blog/?p=47412#comment-49105 In reply to Aladdin.

Make sure that your Odoo is using the virtual environment in which you installed the requirements.

]]>
By: Aladdin https://www.rosehosting.com/blog/how-to-install-odoo-17-on-ubuntu-22-04/#comment-49104 Sat, 06 Apr 2024 09:02:40 +0000 https://www.rosehosting.com/blog/?p=47412#comment-49104 Apr 06 08:43:14 vps-56aca941 odoo17[8318]: File “/opt/odoo17/odoo17/odoo/modules/graph.py”, line >
Apr 06 08:43:14 vps-56aca941 odoo17[8318]: import odoo.tools as tools
Apr 06 08:43:14 vps-56aca941 odoo17[8318]: File “/opt/odoo17/odoo17/odoo/tools/__init__.py”, line>
Apr 06 08:43:14 vps-56aca941 odoo17[8318]: from . import _monkeypatches
Apr 06 08:43:14 vps-56aca941 odoo17[8318]: File “/opt/odoo17/odoo17/odoo/tools/_monkeypatches.py”>
Apr 06 08:43:14 vps-56aca941 odoo17[8318]: from werkzeug.datastructures import FileStorage
Apr 06 08:43:14 vps-56aca941 odoo17[8318]: ModuleNotFoundError: No module named ‘werkzeug’
Apr 06 08:43:14 vps-56aca941 systemd[1]: odoo17.service: Main process exited, code=exited, status=1>
Apr 06 08:43:14 vps-56aca941 systemd[1]: odoo17.service: Failed with result ‘exit-code’.
Apr 06 08:43:14 vps-56aca941 systemd[1]: odoo17.service: Consumed 1.479s CPU time.

keep stopping after somtime

knowing that werkzeug installed correctly from requirements

]]>
By: Aville https://www.rosehosting.com/blog/how-to-install-odoo-17-on-ubuntu-22-04/#comment-49101 Fri, 29 Mar 2024 21:04:12 +0000 https://www.rosehosting.com/blog/?p=47412#comment-49101 Not right like this:

Step 4. Install Wkhtmltopdf
sudo wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.bionic_amd64.deb
sudo dpkg -i wkhtmltox_0.12.6-1.bionic_amd64.deb
sudo apt install -f

Right like this:
cd /tmp
wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-3wkhtmltox_0.12.6.1-3.jammy_amd64.deb
sudo gdebi -n wkhtmltox_0.12.6.1-3.jammy_amd64.deb
rm wkhtmltox_0.12.6.1-3.jammy_amd64.deb
sudo ln -s /usr/local/bin/wkhtmltopdf /usr/bin/
sudo ln -s /usr/local/bin/wkhtmltoimage /usr/bin/

]]>