LinuxTutorialsUbuntu

How To Install Odoo on Ubuntu 16.04 LTS

Install Odoo on Ubuntu 16.04 LTS

In this tutorial, we will show you how to install and configure Odoo on Ubuntu 16.04 LTS. For those of you who didn’t know, Odoo is one of the most popular and most powerful Open Source ERP business software based on the Python programming language.  It is a web-based fully-featured application and comes with Open Source CRM, Point of Sales, Human Resource Management, Point of Sales, Billing and Accounting, Event Management, Email Marketing, Order Tracking etc. This application is helpful to maintain ERP in any business.

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you the step-by-step installation of Odoo on a Ubuntu 16.04 (Xenial Xerus) server.

Odoo Features

  • Odoo comes with a Website Builder, which supports WYSIWYG editor, version control, form builder, and Multi Website with an option to add blogs, forums, and slide shows.
  • Odoo comes with multiple themes and inbuilt e-commerce software.
  • Odoo has contract management as well as subscription management features.
  • Odoo comes with customizable project management and timesheets options, it has inbuilt Invoicing and Project management features.
  • Odoo comes with full-featured Accounting software which includes VoIP integration including an option to send mass mailings and link tracking.
  • Odoo comes with an inbuilt CRM which does accurate forecasting and shows a real-time overview.

Install Odoo on Ubuntu 16.04 LTS

Step 1. First, make sure that all your system packages are up-to-date by running the following apt-get commands in the terminal.

sudo apt-get update
sudo apt-get upgrade

Step 2. Installing Odoo.

The first step is to download the script from Github and to add the code in a new .sh file on your Ubuntu machine, wherever you’d like this:

wget https://raw.githubusercontent.com/Yenthe666/InstallScript/10.0/odoo_install.sh

Next, open up the file and edit the parameters to your liking:

nano odoo_install.sh

There are some things you can configure/change to your likings at the top of the script. You can choose if you wish to install Wkhtmltopdf or not, which version you’d like, where the location is, and most importantly what the master admin password is.

After you configure the file, make it executable:

chmod +x odoo_install.sh

Run the odoo_install.sh script and wait until Odoo 10 is fully installed:

./odoo_install.sh

Edit the Odoo configuration file and set the master admin password:

### nano /etc/odoo-server.conf
admin_passwd = UseStr0ngPasswd

Finally, restart Odoo for the changes to take effect:

/etc/init.d/odoo-server restart

Step 3. Accessing Odoo.

Odoo will be available on HTTP port 8069 by default. Open your favorite browser and navigate to http://your-domain.com:8069 or http://server-ip-address:8069.

Install Odoo on Ubuntu 16.04 LTS

Congratulations! You have successfully installed Odoo. Thanks for using this tutorial for installing Odoo Open Source ERP on Ubuntu 16.04 LTS  (Xenial Xerus) system. For additional help or useful information, we recommend you check the official Odoo website.

VPS Manage Service Offer
If you don’t have time to do all of this stuff, or if this is not your area of expertise, we offer a service to do “VPS Manage Service Offer”, starting from $10 (Paypal payment). Please contact us to get the best deal!

Save

r00t

r00t is an experienced Linux enthusiast and technical writer with a passion for open-source software. With years of hands-on experience in various Linux distributions, r00t has developed a deep understanding of the Linux ecosystem and its powerful tools. He holds certifications in SCE and has contributed to several open-source projects. r00t is dedicated to sharing her knowledge and expertise through well-researched and informative articles, helping others navigate the world of Linux with confidence.
Back to top button