Installing an Odoo 13 Stack on Ubuntu 18.04
Traducciones al EspañolEstamos traduciendo nuestros guías y tutoriales al Español. Es posible que usted esté viendo una traducción generada automáticamente. Estamos trabajando con traductores profesionales para verificar las traducciones de nuestro sitio web. Este proyecto es un trabajo en curso.
What is Odoo?
Odoo (formerly known as OpenERP) is a self-hosted suite of over 10,000 open source applications for a variety of business needs, including CRM, eCommerce, accounting, inventory, point of sale, and project management. These applications are all fully integrated and can be installed and accessed through a web interface, making it easy to automate and manage your company’s processes.
For simple installations, Odoo and its dependencies can be installed on a single Linode (see our Install Odoo 10 on Ubuntu 16.04 guide for an example of this). However, this single-server setup is not suited for production deployments. This guide covers how to configure a production Odoo 13 cluster where the Odoo server and PostgreSQL database are hosted on separate Linodes. This configuration gives you more flexibility and scalability while allowing you to use PostgreSQL database replication for added performance and reliability.
System Requirements
The setup in this guide requires the following minimal Linode specifications:
- A Shared 2GB Linode to install the PostgreSQL 10 database
- A Shared 1GB Linode (Nanode) to install the Odoo 13 web application
Keep in mind that your implementation may need more nodes or higher-memory plans depending on the number of end-users you want to serve and the number of modules you plan to incorporate.
All examples in this guide are for Ubuntu 18.04. If you plan to use a different operating system, adapt the commands as necessary.
Before You Begin
Familiarize yourself with our Getting Started guide and complete the steps for setting your Linode’s hostname and timezone.
This guide uses
sudo
wherever possible. Complete the sections of our Securing Your Server to create a standard user account, harden SSH access, and remove unnecessary network services.Update your systems:
sudo apt-get update && sudo apt-get upgrade
Configure Firewall Rules for Odoo
If you want to configure a firewall for your Linodes, open the following ports:
Node | Open TCP Ports |
---|---|
Odoo 13 application | 22, 6010, 5432, 8069 |
PostgreSQL database | 22, 6010, 5432 |
Ports 22
, 80
, and 5432
are the defaults for SSH, HTTP, and PostgreSQL communications, respectively. Port 6010
is used for Odoo communications and port 8069
is used by Odoo’s webserver. To open a particular port, use a command similar to the following:
sudo ufw allow 22/tcp
For more detailed information about firewall setup please read our guide How to Configure a Firewall with UFW.
Hostname Assignment
In order to simplify communication between Linodes, set hostnames for each server. You can use private IPs if the Linodes are all in the same data center, or Fully Qualified Domain Names (FQDNs) if available. This guide uses the following FQDN and hostname conventions:
Node | Hostname | FQDN |
---|---|---|
Odoo 13 | odoo | odoo.yourdomain.com |
PostgreSQL | postgresql | postgresql.yourdomain.com |
PostgreSQL server:
- File: /etc/hosts
127.0.0.1 localhost 127.0.1.1 postgresql.yourdomain.com postgresql 10.1.3.10 odoo.yourdomain.com odoo
Odoo 13 server:
- File: /etc/hosts
127.0.0.1 localhost 127.0.1.1 odoo.yourdomain.com odoo 10.1.1.10 postgresql.yourdomain.com postgresql
FQDNs are used throughout this guide whenever possible to avoid confusion.
Set up PostgreSQL Database
Configure Odoo’s postgresql
database backend Linode. The Ubuntu 18.04 official repository includes PostgreSQL version 10 which offers significant performance improvements as well as database replication compatibility.
Install the PostgreSQL database and developer libraries with the following command:
sudo apt install postgresql-10 postgresql-server-dev-10 -y
Create PostgreSQL User
Odoo requires a separate PostgreSQL user for communications between the web application Linode and the database Linode. Create the database user odoo
. This user is in charge of all operations. Use a strong password and save it in a secure location to use later:
sudo -u postgres createuser odoo -U postgres -dP
The options used are described below:
-u
: Executes the command as thepostgres
user.-U
: Indicates the user name to connect as.-d
: Grants the user permission to create databases.-P
: Prompts you for the new user’s password.
Configure Host Based Authentication
Stop the PostgreSQL service:
sudo systemctl stop postgresql
Edit the
pg_hba.conf
file to allow PostgreSQL Linode to communicate with the Odoo Linode server. Add the following line to the file:- File: /etc/postgresql/10/main/pg_hba.conf
host all odoo odoo.yourdomain.com md5
This line grants the odoo
user the rights connect to all
databases within this server.
The settings in the pg_hba.conf
file are:
host
: Enables connections using Unix-domain sockets.all
: Match all databases on the server. You can provide a comma separated list of specific Odoo database names if you know them beforehand.odoo
: The Odoo user responsible for application/database communications.odoo.yourdomain.com
: The address of your Odoo server. You should replace this with your FQDN or Ip address.md5
: Make use of client-supplied MD5-encrypted passwords for authentication.
Configure PostgreSQL listening address
Edit postgresql.conf
to allow the database server listening to remote connections:
- File: /etc/postgresql/10/main/postgresql.conf
#From CONNECTIONS AND AUTHENTICATION Section listen_addresses = '*'
These settings are:
listen_addresses
: What IP addresses to listen on. The'*'
means that the server listens to all IP addresses. You can limit this to only include the IP addresses that you consider safe.
Enable PostgreSQL on Startup
Now that you finished PostgreSQL configuration you can start the postgresql
service and enable it on startup:
sudo systemctl start postgresql && sudo systemctl enable postgresql
Odoo 13 Setup
Configure your Odoo 13 web application to work with the PostgreSQL database backend.
Prepare Linode for Odoo 13 Installation
In order to separate Odoo from other services, create a new Odoo system user to run its processes:
sudo adduser --system --home=/opt/odoo --group odoo
Install system dependencies that are needed during Odoo 13 set up:
sudo apt-get install python3 python3-pip python3-suds python3-all-dev python3-venv \ python3-dev python3-setuptools python3-tk libxml2-dev libxslt1-dev libevent-dev \ libsasl2-dev libldap2-dev pkg-config libtiff5-dev libjpeg8-dev libjpeg-dev \ zlib1g-dev libfreetype6-dev liblcms2-dev liblcms2-utils libwebp-dev tcl8.6-dev \ tk8.6-dev libyaml-dev fontconfig xfonts-75dpi xfonts-base xfonts-encodings xfonts-utils -y
Use Git to clone the Odoo files onto your server:
sudo git clone https://www.github.com/odoo/odoo.git --depth 1 \ --branch 13.0 --single-branch /opt/odoo
Enforce the use of POSIX locale to prevent possible errors during installation (this has nothing to do with the Odoo language):
export LC_ALL=C
Install Less CSS via Node.js and npm:
sudo curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - \ && sudo apt install -y nodejs \ && sudo npm install -g less less-plugin-clean-css
Download
wkhtmltopdf
version0.12.5
which is the recommended version for Odoo 13. For more information regardingwkhtmltopdf
recommended versions, visit Odoo wikicd /tmp wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.bionic_amd64.deb
Install the package:
sudo dpkg -i wkhtmltox_0.12.5-1.bionic_amd64.deb
To ensure that
wkhtmltopdf
functions properly, copy the binaries to a location in your executable path and give them the necessary permission for execution:sudo cp /usr/local/bin/wkhtmlto* /usr/bin/ \ && sudo chmod a+x /usr/bin/wk*
Set Up Virtualenv
It’s considered a best practice to isolate Odoo’s Python modules from the modules included as part of the operating system to prevent unforeseen conflicts in the long run, especially after periodic OS updates. For that reason using virtualenv
is highly recommended.
Create a new
virtualenv
environment for Odoo 13 application:python3 -m venv /home/<user>/odoo-env
Activate the
odoo-env
virtual environment you created in the previous step:source /home/<user>/odoo-env/bin/activate
Update
pip3
using the following command:pip3 install --upgrade pip
Install Python’s wheel in the virtual environment:
pip3 install wheel
Let’s review the virtual environment creation:
python3 -m venv
: Runsvenv
module using Python 3, this module is in charge of creating the virtual environment./home/<user>/odoo-env
: Indicates the path used for the virtual Python environment. For the purpose of this guide,home
directory of the current user was used but you can change it to any location that suits your needs as long as you remember to grant theodoo
user with proper permissions afterward.
Install Odoo’s Python modules
Install the dependencies required by Odoo in the Python 3 environment:
pip3 install -r /opt/odoo/doc/requirements.txt pip3 install -r /opt/odoo/requirements.txt
Check that all requirements are properly installed in your virtual environment:
pip3 list
Exit from the Python virtual environment by issuing the command:
deactivate
Configure the Odoo Server
Copy the included configuration file to
/etc/
and change its name toodoo-server.conf
sudo cp /opt/odoo/debian/odoo.conf /etc/odoo-server.conf
Modify the configuration file. The complete file should look similar to the following, depending on your deployment needs:
- File: /etc/odoo-server.conf
[options] admin_passwd = admin db_host = postgresql.yourdomain.com db_port = False db_user = odoo db_password = odoo_password addons_path = /opt/odoo/addons xmlrpc_port = 8069
admin_passwd
: The password that allows administrative operations within Odoo GUI. Be sure to changeadmin
to something more secure.db_host
: The postgresql FQDN.db_port
: Odoo uses PostgreSQL’s default port5432
, change this only if you’re using custom PostgreSQL settings.db_user
: Name of the PostgreSQL database user.db_password
: Use the PostgreSQLodoo
user password you created previously.addons_path
: Default addons path. You can add custom paths separating them with commas:</path/to/custom/modules>
xmlrpc_port
: Port that Odoo listens on.
Create an Odoo Service
Create a systemd unit called odoo-server
to allow your application to behave as a service. Create a new file at /lib/systemd/system/odoo-server.service
and add the following, replace /home/<user>
with the directory where you setup your virtual Python environment:
- File: /lib/systemd/system/odoo-server.service
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
[Unit] Description=Odoo Open Source ERP and CRM [Service] Type=simple PermissionsStartOnly=true SyslogIdentifier=odoo-server User=odoo Group=odoo ExecStart=/home/<user>/odoo-env/bin/python3 /opt/odoo/odoo-bin --config=/etc/odoo-server.conf --addons-path=/opt/odoo/addons/ WorkingDirectory=/opt/odoo/ StandardOutput=journal+console [Install] WantedBy=multi-user.target
Change File Ownership and Permissions
Change the
odoo-server
service permissions and ownership so only root can write to it, while theodoo
user can only read and execute on it:sudo chmod 755 /lib/systemd/system/odoo-server.service \ && sudo chown root: /lib/systemd/system/odoo-server.service
Since the
odoo
user runs the application, change its ownership accordingly. Replace/home/<user>
with the directory where you setup your virtual Python environment:sudo chown -R odoo: /opt/odoo/ && sudo chown -R odoo: /home/<user>/odoo-env
Protect the server configuration file. Change its ownership and permissions so no other non-root user can access it:
sudo chown odoo: /etc/odoo-server.conf \ && sudo chmod 640 /etc/odoo-server.conf
Test your Odoo Stack
Confirm that everything is working as expected.
Start the Odoo server:
sudo systemctl start odoo-server
Confirm that
odoo-server
is running:sudo systemctl status odoo-server
In a browser, navigate to
odoo.yourdomain.com:8069
orhttp://<your_Linode_IP_address>:8069
. If your proxy and your DNS configuration are working properly you are presented with Odoo’s database creation screen:Fill in all the fields, check the Demo data box to populate your database with sample data, and then click on Create database button.
In the browser, you should see a list of available apps, indicating that database creation was successful:
The first time you create a database, Odoo may take several minutes to load all of its add-ons. Do not reload the page during this process.
Enable the Odoo Service
Enable the
odoo-server
service to start automatically on reboot:sudo systemctl enable odoo-server
Reboot your Linode from the Linode Manager.
Check the Odoo logs to verify that the Odoo server is running without errors:
sudo journalctl -u odoo-server
Back Up Odoo Databases
If all components of the Odoo stack are running on a single server, it is simple to back up your databases using the Odoo web interface. However, this does not work with the configuration in this guide, since PostgreSQL was not installed on the Odoo Linode server.
You have two options to backup your production database:
You can install PostgreSQL 10 on the Odoo server using the procedure described on this guide. This installs
pg_dump
and other utilities, allowing you to use the Odoo GUI as before. Since Odoo configuration is explicit about database connection you do not have to worry about anything else. This method restores the database to the PostgreSQL server rather than Odoo.You can also use a procedure similar to the one described in our guide How to Back Up Your PostgreSQL Database from the backend PostgreSQL server.
Update Odoo Modules
Once you have backed up your production database you can update Odoo modules.
From your Odoo server restart the Odoo service using the following flags to instruct the system to search for updates and apply any changes to modules:
sudo service odoo-server restart -u all -d <production_database_name>
Update your System
If all your tests pass, you can safely update your installation.
From your Linode, download the new code from source:
cd /opt/odoo \ && sudo git fetch origin 13.0
Apply the changes to your repository:
sudo git reset --hard origin/13.0
More Information
You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials.
This page was originally published on