odoo Unable to find Wkhtmltopdf on this system

Odoo ERP

On an odoo installation, I got the error “Unable to find Wkhtmltopdf on this system”, when generating reports. This error was because server had old version of wkhtmltopdf installed. You can download and install latest version of wkhtmltopdf from https://wkhtmltopdf.org/downloads.html On Ubuntu 20.04, the error is fixed by Remove currently installed wkhtmltox apt remove –purge … Read more

Install Odoo using Docker

Odoo is an open source ERP and CRM software written in python. To install Odoo using docker, first install docker using wget -qO- https://get.docker.com/ | sh Odoo use PostgreSQL server to store database. Lets create a postgres docker container. docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=your-password-here -e POSTGRES_DB=postgres –name odoo-db postgres:10 In above command, replace … Read more

Odoo

Install Odoo using Docker Odoo apt signatures couldn’t be verified Odoo init script odoo Unable to find Wkhtmltopdf on this system

Odoo apt signatures couldn’t be verified

When updating apt on Ubuntu server, i get following error root@ip-172-31-25-25:/home/ubuntu# apt-get update Hit:1 http://ap-south-1.ec2.archive.ubuntu.com/ubuntu xenial InRelease Hit:2 http://ap-south-1.ec2.archive.ubuntu.com/ubuntu xenial-updates InRelease Hit:3 http://ap-south-1.ec2.archive.ubuntu.com/ubuntu xenial-backports InRelease Ign:4 http://nightly.odoo.com/9.0/nightly/deb ./ InRelease Get:5 http://nightly.odoo.com/9.0/nightly/deb ./ Release [1186 B] Get:6 http://nightly.odoo.com/9.0/nightly/deb ./ Release.gpg [819 B] Ign:6 http://nightly.odoo.com/9.0/nightly/deb ./ Release.gpg Get:7 http://nightly.odoo.com/9.0/nightly/deb ./ Packages [1790 B] Hit:8 http://security.ubuntu.com/ubuntu xenial-security InRelease … Read more