Install Odoo 11 on Ubuntu 16.04
Install Odoo 11 on Ubuntu 16.04
06:50We’ll show you, how to install Odoo 11 on Ubuntu 16.04. Configure Apache as a reverse proxy for your Odoo 11 so you can access your Odoo 11 application via a domain without typing Odoo’s port in the URL.
Odoo 11 is one of the most popular and most powerful Open Source ERP business software based on the Python programming language.
For this version, much of the focus is given on the intuitiveness, usefulness and better accessibility to the end-users & development team.
With Odoo Version 11, we can see new website dashboard incorporated with various keyboard shortcuts which makes navigating through Odoo quicker and easier than ever.
In addition to this, there is a new global search option in the homepage itself. Installing Odoo 11 on Ubuntu 16.04 is not so complicated process and if you follow the steps below, it shouldn’t take longer than 20 minutes to install Odoo 11 on Ubuntu 16.04.
1. Connect to SSH and Update the Packages
Before you begin, you need to connect to your server via SSH. Also, if this is your first time logging to your VPS make sure you check out our First Steps After Getting an Ubuntu VPS tutorial.After you have successfully logged in, we need to make sure that all our packages are up to date by running the following commands:
apt-get update apt-get upgrade
You can also enable automatic updates on your VPS.
To install Odoo 11 on our system we will use a script made by Yenthe Van Ginneken.
2. Download and Install Yenthe Van Ginneken Script
Navigate to a directory wherever you would like to download the script. For example, to go into the ‘home’ directory you need to type:cd /home
Then use the following command to download the script:
wget https://raw.githubusercontent.com/Yenthe666/InstallScript/11.0/odoo_install.sh
You can also modify the script if you would like with:
nano odoo_install.sh
For example, you can change the version you would like to install, the location of where it will installed, whether you install the enterprise version or not and most important you can change the master admin password you would like to use.
After you make the desired changes, make sure you save them.
3. Make Executable File
In order to run the script we need to make the file executable with the following command:chmod +x odoo_install.sh
4. Install Odoo 11
Now we can run the script and wait until Odoo 11 gets installed../odoo_install.sh
Congratulations! Odoo 11 has now been installed on your Ubuntu 16.04 VPS.
5. Set Master Password
If you haven’t set the master admin password before the installation you can do it now by editing the Odoo 11 configuration file. You can open it with the following command:nano /etc/odoo-server.conf
and change the admin_password field with a strong password. You can also generate one from the command line.
admin_passwd = StrongPassword
6. Verify Odoo Installation
Restart Odoo for the changes to take effect:/etc/init.d/odoo-server restart
To access your Odoo, open your browser and navigate to http://your-server-IP:8069. Initially, you would be asked to create a new database.
Once the database is created, you will get redirected to the admin panel from where you can log in as the admin user.
After successfully logging in you can start using your Odoo 11 and configure it to your needs, install additional modules etc.
Get a VPS from us and we’ll install, configure and optimize Odoo for you, free of charge!
7. Setting up a Reverse Proxy
In order to access your Odoo application only by using your domain name, without the port number in the URL, we need to set up Apache as a reverse proxy.First, we will need to enable some additional proxy modules for Apache. You can do this with the following commands:
a2enmod proxy a2enmod proxy_http
Once this is done, open a new configuration file for your domain with the following command:
nano /etc/apache2/sites-available/your_domain.conf
And enter the following:
Enable “your_domain.conf” configuration in Apache using:ServerName your_domain.com ServerAlias www.your_domain.com ProxyRequests Off Order deny,allow Allow from all ProxyPass / http://your_domain.com:8069/ ProxyPassReverse / http://your_domain.com:8069/Order allow,deny Allow from all
ln -s /etc/apache2/sites-available/your_domain.conf /etc/apache2/sites-enabled/your_domain.conf
Remember to replace your ‘your_domain.com’ with your actual domain name. Save the file, close it and restart Apache for the changes to take effect:
service apache2 restart
That’s it. If you followed all of the instructions properly you can now access your Odoo 11 using your domain name.
Additionally, if you would like to improve the performance of your Odoo, you can also check out our tutorial on How to speed up Odoo.
You dont have to know how to install Odoo 11 on Ubuntu 16.04 If you have a Odoo VPS Hosting with us. You can simply ask our administrators to install Odoo 11 on Ubuntu 16.04 for you.
They’re available 24/7, and will be able to help you with the installation of Odoo 11 on Ubuntu 16.04.
PS. If you enjoy reading this blog post on How to Install Odoo 11 on Ubuntu 16.04, feel free to share it on social networks using the shortcuts below, or simply leave a comment.
0 comments