Comments on: How to Install Odoo 13 on Ubuntu 20.04 https://www.rosehosting.com/blog/how-to-install-odoo-13-on-ubuntu-20-04/ Premium Linux Tutorials Since 2001 Fri, 03 Jun 2022 08:32:54 +0000 hourly 1 https://wordpress.org/?v=6.5.2 By: admin https://www.rosehosting.com/blog/how-to-install-odoo-13-on-ubuntu-20-04/#comment-48618 Thu, 06 May 2021 14:39:26 +0000 https://www.rosehosting.com/blog/?p=32678#comment-48618 In reply to Nahuel.

You can set password to “odoo” user with the following command in the console: passwd odoo
And you will have to enter the password twice.

]]>
By: Nahuel https://www.rosehosting.com/blog/how-to-install-odoo-13-on-ubuntu-20-04/#comment-48617 Wed, 05 May 2021 17:20:29 +0000 https://www.rosehosting.com/blog/?p=32678#comment-48617 what is the password when creating the odoo user?

]]>
By: admin https://www.rosehosting.com/blog/how-to-install-odoo-13-on-ubuntu-20-04/#comment-48504 Thu, 19 Nov 2020 07:11:19 +0000 https://www.rosehosting.com/blog/?p=32678#comment-48504 In reply to Ruddty.

Using both commands: systemctl start odoo and systemctl start odoo.service should work the same.

]]>
By: Ruddty https://www.rosehosting.com/blog/how-to-install-odoo-13-on-ubuntu-20-04/#comment-48502 Wed, 18 Nov 2020 07:27:52 +0000 https://www.rosehosting.com/blog/?p=32678#comment-48502 Thank you so much for this helpfull tuto, but Odoo service does not start automatically, we need to correct these two lines:
systemctl start odoo
systemctl enable odoo

In :
systemctl start odoo.service
systemctl enable odoo.service
and it’s should work or start correctly the odoo service.

]]>
By: admin https://www.rosehosting.com/blog/how-to-install-odoo-13-on-ubuntu-20-04/#comment-48435 Fri, 18 Sep 2020 08:15:44 +0000 https://www.rosehosting.com/blog/?p=32678#comment-48435 In reply to Promise.

We have updated the post. Thanks.

]]>
By: Brett https://www.rosehosting.com/blog/how-to-install-odoo-13-on-ubuntu-20-04/#comment-48434 Thu, 17 Sep 2020 17:30:01 +0000 https://www.rosehosting.com/blog/?p=32678#comment-48434 In “Step #2” adding libpg-dev package allowed psycopg2 to install correctly during “Step#6”. So the entire command should be:

apt-get install python3-venv build-essential python3-pillow python3-lxml python3-dev python3-pip python3-setuptools npm nodejs git gdebi libldap2-dev libsasl2-dev libxml2-dev libxslt1-dev libjpeg-dev libpq-dev -y

]]>
By: Promise https://www.rosehosting.com/blog/how-to-install-odoo-13-on-ubuntu-20-04/#comment-48433 Thu, 17 Sep 2020 07:18:51 +0000 https://www.rosehosting.com/blog/?p=32678#comment-48433 I ran into the same psycopg2 issue, apt-get install libpq-dev fixed it.

]]>
By: admin https://www.rosehosting.com/blog/how-to-install-odoo-13-on-ubuntu-20-04/#comment-48411 Wed, 02 Sep 2020 06:11:31 +0000 https://www.rosehosting.com/blog/?p=32678#comment-48411 In reply to Jorge Aparici.

Please try to run the following commands:

pip3 uninstall psycopg2
pip3 list –outdated
pip3 install –upgrade wheel
pip3 install –upgrade setuptools
pip3 install psycopg2

]]>