Book Image

Working with Odoo 11 - Third Edition

By : Greg Moss
Book Image

Working with Odoo 11 - Third Edition

By: Greg Moss

Overview of this book

Odoo is an all-in-one management software that offers an array of business applications, forming a complete suite of enterprise management applications. Odoo 11 comes with advances on usability, speed, and design. Working with Odoo 11 starts with how to set up Odoo, both online and on your own server. You’ll then configure the basic company settings required to quickly get your first Odoo system up and running. Later, you’ll explore customer relationship management in Odoo and its importance in a modern business environment. You'll then dive into purchasing applications with Odoo, learn some of the primary functionalities of ERP systems for manufacturing operations, and use analytic accounting to provide better reporting. After that, you'll learn how to work with Odoo for mobile, and finally, you will walk through the recent Odoo 11 features with respect to the community and enterprise edition, giving you a complete understanding of what Odoo can do for your business.
Table of Contents (18 chapters)

Installing Odoo on Ubuntu

This book will walk you through the installation procedure for Odoo on Ubuntu using the latest all-in-one nightly package. Depending on your Ubuntu installation and how you want to work with Odoo, there are alternative installation methods.

At the time of writing, Odoo is most commonly installed on Ubuntu version 16.04.

Modifying the sources.list file

Installing Odoo in Ubuntu is easy when you use the Debian repository. In order to perform these operations, you may have to be the root user. If you have an account that has the permissions to do so, you can temporarily switch to the root user by opening a Terminal window, and entering the following:

sudo -s

For better security and to guarantee you are installing the correct package, Odoo now signs their distributions. The following command adds the correct key to your Ubuntu installation so that it will recognize the Odoo package:

wget -O - https://nightly.odoo.com/odoo.key | apt-key add - 

Next, we want to add the distribution to the /etc/apt/sources.list file with the following command:

echo "deb http://nightly.odoo.com/11.0/nightly/deb/ ./" >> /etc/apt/sources.list.d/odoo.list

This installs the package.

You can start the installation process by entering these commands into a Terminal window:

sudo apt-get update
sudo apt-get install odoo

The Odoo packages will first be downloaded and then installed. This is an all-in-one installation and should set up all the necessary packages, PostgreSQL, and library dependencies required to run Odoo.

By default, the deb installation will place the source in the following directory:

/usr/lib/python3/dist-packages/odoo

Testing your Odoo installation

Point your browser to http://localhost:8069 and you should see the Odoo database creation page appear.