Skip to main content

Posts

Showing posts from July, 2023

install odoo 16 on Ubuntu 20.04

The much-anticipated release of Odoo version 16 has finally arrived. For the Community Edition Source Code, visit the  GitHub  LINK provided. In this comprehensive guide, I will walk you through the process of installing Odoo version 16 (Community Edition) on your Ubuntu 20.04 system. If you already have Python installed, please ensure it is at least version 3.5 or the latest. To begin, open your terminal and carefully execute the following commands, step-by-step, to achieve optimal results: Step 1 : Update the apt source lists: sudo apt-get update Step 2 : Create the Odoo user who will own and operate the application: sudo adduser --system --home=/opt/odoo --group odoo Step 3 : Install and configure the PostgreSQL database server: sudo apt-get install -y postgresql After successfully installing PostgreSQL, the next step is setting up a new user dedicated to our Odoo application. This user will handle all interactions with the database on behalf of Odoo. sudo service postgresql start