{"id":642,"date":"2020-09-14T17:47:19","date_gmt":"2020-09-14T11:47:19","guid":{"rendered":"https:\/\/mellowhost.com\/blog\/?p=642"},"modified":"2020-09-14T17:47:19","modified_gmt":"2020-09-14T11:47:19","slug":"how-to-install-odoo-13-in-centos-7","status":"publish","type":"post","link":"https:\/\/mellowhost.com\/blog\/how-to-install-odoo-13-in-centos-7.html","title":{"rendered":"How to Install Odoo 13 in CentOS 7"},"content":{"rendered":"\n<p>Odoo is currently one of the most popular tool for business purposes. It has a community edition, that allows managing ERP at very low cost. Odoo was previously known as OpenERP. Odoo requires to be installed on a dedicated server or VPS. Odoo 13 had come out on October, 2019. Odoo 14 hasn&#8217;t been released yet for production. I will have a straight forward how to on installing the latest Odoo 13 in CentOS 7. <\/p>\n\n\n\n<p><strong>Log in to your system and update<\/strong><\/p>\n\n\n\n<p>First step would be to login to your system and then update the system using yum.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">ssh root@server_ip<\/pre>\n\n\n\n<p>You may check the CentOS version from the redhat release file using the following:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">cat \/etc\/redhat-release<\/pre>\n\n\n\n<p>It should show you something like the following if you <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">CentOS Linux release 7.8.2003 (Core)<\/pre>\n\n\n\n<p>Now, you may try updating the system with yum<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">yum update -y<\/pre>\n\n\n\n<p>Once done, now install the EPEL repository as we need it to satisfy a couple of dependecies:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">yum install epel-release<\/pre>\n\n\n\n<p><strong>Install Python 3.6 packages and Odoo dependencies<\/strong><\/p>\n\n\n\n<p>We need Python 3.6 at least to run Odoo 13. Odoo 12 had support for Python 3.5, unfortunately, Odoo 13 doesn&#8217;t. We will use &#8216;Software Collection (scl)&#8217; repository to install and use Python 3.6. To find the available Python versions in SCL, you may check the following:<\/p>\n\n\n\n<p><a href=\"https:\/\/www.softwarecollections.org\/en\/scls\/user\/rhscl\/?search=python&amp;policy=&amp;repo=&amp;order_by=-create_date&amp;per_page=10\">SCL Repository for Python<\/a><\/p>\n\n\n\n<p>Now, to install Python 3.6 using SCL, we first need to install the SCL repository for Centos:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">yum install centos-release-scl<\/pre>\n\n\n\n<p>Once the SCL is loaded, now, you may install the python 3.6 using the following command:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">yum install rh-python36<\/pre>\n\n\n\n<p>Once the Python is installed, now we will install several tools and packages for Odoo dependencies with the following command:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">yum install git gcc nano wget nodejs-less libxslt-devel bzip2-devel openldap-devel libjpeg-devel freetype-devel<\/pre>\n\n\n\n<p><strong>Create Odoo User<\/strong><\/p>\n\n\n\n<p>We now need to create a system user and group for Odoo and define a home directory to \/opt\/odoo<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">useradd -m -U -r -d  \/opt\/odoo -s \/bin\/bash odoo<\/pre>\n\n\n\n<p>You may use any username here, but remember to create the same username for the PostgreSQL as well. <\/p>\n\n\n\n<p><strong>Install PostgreSQL<\/strong><\/p>\n\n\n\n<p>CentOS base repository unfortunately, comes with Postgresql 9.2. But we want to use PostgreSQL 9.6 for our Odoo installation. You may check the available PostgreSQL for CentOS 7 using the following command:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">yum list postgresql*<\/pre>\n\n\n\n<p>As by default CentOS 7 does not provide the PostgreSQL 9.6, we would use PostgreSQL official repository to download and install the 9.6 version. <\/p>\n\n\n\n<p>First, we install the Postgres Yum Repository using the following command:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">yum install https:\/\/download.postgresql.org\/pub\/repos\/yum\/9.6\/redhat\/rhel-7-x86_64\/pgdg-redhat-repo-latest.noarch.rpm<\/pre>\n\n\n\n<p>Now, you may install PostgreSQL 9.6 and related required packages using the following command:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">yum install postgresql96 postgresql96-server postgresql96-contrib postgresql96-libs<\/pre>\n\n\n\n<p>Now, we need to initialize the postgres database and start it. You may do that using the following:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"># Initialize the DB\n\/usr\/pgsql-9.6\/bin\/postgresql96-setup initdb\n\n# Start the database\nsystemctl start postgresql-9.6.service<\/pre>\n\n\n\n<p>Now you may enable Postgres to start when booting up using the systemctl enable command:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">systemctl enable postgresql-9.6.service<\/pre>\n\n\n\n<p>Now, we need to create a database user for our Odoo installation. You may do that using the following:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">su - postgres -c \"createuser -s odoo\"<\/pre>\n\n\n\n<p>Note: If you have created a different user for Odoo installation other than &#8216;odoo&#8217; than you should change the username here as well.<\/p>\n\n\n\n<p><strong>Install Wkhtmltopdf<\/strong><\/p>\n\n\n\n<p>Wkhtmltopdf is a open source tool to make html in pdf format so that you may print pdf reports. This tool is used by Odoo and requires to be installed as dependency. CentOS 7 repository does not provide the latest version of this tool, and Odoo requires you to use the latest version. Hence, we require to download the latest version from the Wkhtmltopdf website and install it. To do that, you may first visit the page:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">https:\/\/wkhtmltopdf.org\/downloads.html<\/pre>\n\n\n\n<p>The page gives you the direct rpm download link for each version of CentOS\/Ubuntu\/Mac etc. Download the stable version for CentOS 7. At the time of writing, the URL for CentOS 7 x86_64 bit is the following:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">https:\/\/github.com\/wkhtmltopdf\/packaging\/releases\/download\/0.12.6-1\/wkhtmltox-0.12.6-1.centos7.x86_64.rpm<\/pre>\n\n\n\n<p>You may install this using the following:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">cd \/opt\/\nwget https:\/\/github.com\/wkhtmltopdf\/packaging\/releases\/download\/0.12.6-1\/wkhtmltox-0.12.6-1.centos7.x86_64.rpm\nyum localinstall wkhtmltox-0.12.6-1.centos7.x86_64.rpm<\/pre>\n\n\n\n<p><strong>Install and Configure Odoo 13<\/strong><\/p>\n\n\n\n<p>If you have come all through here, that means you are done with the all dependency installations before starting to download Odoo 13 source code. We will download Odoo 13 from it&#8217;s Github repo and use virtualenv to create an isolated python environment to install this python software. <\/p>\n\n\n\n<p>First, login as odoo from root:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">su - odoo<\/pre>\n\n\n\n<p>Clone the Odoo source code from Github repository:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">git clone https:\/\/www.github.com\/odoo\/odoo --depth 1 --branch 13.0 \/opt\/odoo\/odoo13<\/pre>\n\n\n\n<p>This will bring the Odoo 13 branch from the Odoo repository and put it inside the folder \/opt\/odoo\/odoo13<\/p>\n\n\n\n<p>Now, we need to enable software collections in order to access python binaries:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">scl enable rh-python36 bash<\/pre>\n\n\n\n<p>Then we need to create a virtual environment to complete the installation:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">cd \/opt\/odoo\npython3 -m venv odoo13-venv<\/pre>\n\n\n\n<p>Now, you may activate the virtual environment you have just created:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">source odoo13-venv\/bin\/activate<\/pre>\n\n\n\n<p>Now, we upgrade the pip and install the wheel library:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">pip install --upgrade pip\npip3 install wheel<\/pre>\n\n\n\n<p>Once done, now we can using pip3 to install all the required Python modules from the requirements.txt file:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">pip3 install -r odoo13\/requirements.txt<\/pre>\n\n\n\n<p>Once the installation is complete, now we can deactivate the virtual environment and get back to the root user<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">deactivate &amp;&amp; exit ; exit<\/pre>\n\n\n\n<p>If you think, you will create custom modules, you may now create it and give odoo the permission accordingly:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">mkdir \/opt\/odoo\/odoo13-custom-addons\nchown odoo: \/opt\/odoo\/odoo13-custom-addons<\/pre>\n\n\n\n<p>Now, we can fill up the odoo configuration file. First open the odoo.conf file:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">nano \/etc\/odoo.conf<\/pre>\n\n\n\n<p>You may paste the following inside:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">[options]\n; This is the password that allows database operations:\nadmin_passwd = set_the_password_to_create_odoo_database\ndb_host = False\ndb_port = False\ndb_user = odoo\ndb_password = False\naddons_path = \/opt\/odoo\/odoo13\/addons,\/opt\/odoo\/odoo13-custom-addons\n; You can enable log file with uncommenting the next line\n; logfile = \/var\/log\/odoo13\/odoo.log\n<\/pre>\n\n\n\n<p>Please do not forget to change the password &#8216;set_the_password_to_create_odoo_database&#8217; with a new strong password. This would be used to create Odoo databases from the login screen.<\/p>\n\n\n\n<p><strong>Create the systemd service file and start Odoo 13<\/strong><\/p>\n\n\n\n<p>Now, we will create a service file, to be able to start, stop and restart Odoo daemon. To do that, first create a service file using the following:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">nano \/etc\/systemd\/system\/odoo13.service<\/pre>\n\n\n\n<p>and paste the following:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">[Unit]\nDescription=Odoo13\nRequires=postgresql-9.6.service\nAfter=network.target postgresql-9.6.service\n\n[Service]\nType=simple\nSyslogIdentifier=odoo13\nPermissionsStartOnly=true\nUser=odoo\nGroup=odoo\nExecStart=\/usr\/bin\/scl enable rh-python35 -- \/opt\/odoo\/odoo13-venv\/bin\/python3 \/opt\/odoo\/odoo13\/odoo-bin -c \/etc\/odoo.conf\nStandardOutput=journal+console\n\n[Install]\nWantedBy=multi-user.target<\/pre>\n\n\n\n<p>Now, save the file and exit.<\/p>\n\n\n\n<p>Now, you need to reload the systemd daemon to be able to read the latest changes you have made to services. To do that, run:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">systemctl daemon-reload<\/pre>\n\n\n\n<p>Finally, now we can start Odoo 13 instance using the following command:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">systemctl start odoo13<\/pre>\n\n\n\n<p>If you are interested to check the status of the instance, you may do this:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">systemctl status odoo13<\/pre>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">[root@hr ~]# systemctl status odoo13\n\u25cf odoo13.service - Odoo13\n   Loaded: loaded (\/etc\/systemd\/system\/odoo13.service; enabled; vendor preset: disabled)\n   Active: active (running) since Sun 2020-09-13 08:26:46 EDT; 23h ago\n Main PID: 24502 (scl)\n   CGroup: \/system.slice\/odoo13.service\n           \u251c\u250024502 \/usr\/bin\/scl enable rh-python36 -- \/opt\/odoo\/odoo13-venv\/bin\/python3 \/opt\/odoo\/odoo13\/odoo-bin -c \/etc\/odoo.conf\n           \u251c\u250024503 \/bin\/bash \/var\/tmp\/sclSWH04z\n           \u2514\u250024507 \/opt\/odoo\/odoo13-venv\/bin\/python3 \/opt\/odoo\/odoo13\/odoo-bin -c \/etc\/odoo.conf\n<\/pre>\n\n\n\n<p>It show green active running, if everything worked out. If you see no error, you may now enable Odoo to start during the boot:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">systemctl enable odoo13<\/pre>\n\n\n\n<p>If you would like to see the logs, you may either use the journal tools like the following:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">journalctl -u odoo13<\/pre>\n\n\n\n<p>or uncomment the following line to log the debugs in \/etc\/odoo.conf<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">logfile = \/var\/log\/odoo13\/odoo.log<\/pre>\n\n\n\n<p>After making any change to \/etc\/odoo.conf, do not forget the restart the Odoo13 instance using systemctl.<\/p>\n\n\n\n<p><strong>Test the Installation<\/strong><\/p>\n\n\n\n<p>You may now test the installation using http:\/\/your_server_ip:8069. If everything worked, it should come up. If it doesn&#8217;t, you may try stopping your &#8216;firewalld&#8217; to see if firewall is blocking the port or not:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">systemctl stop firewalld<\/pre>\n\n\n\n<p>At Mellowhost, we provide Odoo installation and configuration assistance for absolute free of charge. If you are willing to try out any of our VPS for Odoo, you may do so and talk with us through the Live chat or the ticket for Odoo assistance.<\/p>\n\n\n\n<p>Furthermore, Good luck. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Odoo is currently one of the most popular tool for business purposes. It has a community edition, that allows managing ERP at very low cost. Odoo was previously known as OpenERP. Odoo requires to be installed on a dedicated server or VPS. Odoo 13 had come out on October, 2019. Odoo 14 hasn&#8217;t been released &hellip; <a href=\"https:\/\/mellowhost.com\/blog\/how-to-install-odoo-13-in-centos-7.html\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;How to Install Odoo 13 in CentOS 7&#8221;<\/span><\/a><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[337,461,144,33,292,271,293],"tags":[304,481,480],"_links":{"self":[{"href":"https:\/\/mellowhost.com\/blog\/wp-json\/wp\/v2\/posts\/642"}],"collection":[{"href":"https:\/\/mellowhost.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mellowhost.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mellowhost.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/mellowhost.com\/blog\/wp-json\/wp\/v2\/comments?post=642"}],"version-history":[{"count":1,"href":"https:\/\/mellowhost.com\/blog\/wp-json\/wp\/v2\/posts\/642\/revisions"}],"predecessor-version":[{"id":643,"href":"https:\/\/mellowhost.com\/blog\/wp-json\/wp\/v2\/posts\/642\/revisions\/643"}],"wp:attachment":[{"href":"https:\/\/mellowhost.com\/blog\/wp-json\/wp\/v2\/media?parent=642"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mellowhost.com\/blog\/wp-json\/wp\/v2\/categories?post=642"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mellowhost.com\/blog\/wp-json\/wp\/v2\/tags?post=642"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}