{"id":4067,"date":"2021-12-29T11:44:26","date_gmt":"2021-12-29T06:14:26","guid":{"rendered":"https:\/\/www.helptoinstall.com\/?p=4067"},"modified":"2025-06-30T17:49:16","modified_gmt":"2025-06-30T12:19:16","slug":"how-to-install-odoo-15-on-ubuntu","status":"publish","type":"post","link":"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/","title":{"rendered":"How To Install Odoo 15 On Ubuntu?"},"content":{"rendered":"\n<p>Odoo&#8217;s version 14 was finally made available after a long wait.<br>Odoo 14 was released last year and is now being prepped for release as Odoo 15.<br>You&#8217;ll get a sneak peek at some of the new features in Odoo 15 when you read our guide.<br>Simply follow the steps outlined below to install Odoo 15 on Ubuntu 20.04.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-install-odoo-15-on-ubuntu\"><strong>Install odoo 15<\/strong> On Ubuntu<\/h2>\n\n\n\n<p><strong>STEP 1<\/strong> : Update the apt source list.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo apt-get update<\/strong><\/code><\/pre>\n\n\n\n<p><strong>STEP 2<\/strong> : Create a new Odoo user and a group for that user. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo adduser -system -home=\/opt\/odoo -group odoo<\/strong><\/code><\/pre>\n\n\n\n<p><strong>STEP 3 <\/strong>: <a href=\"https:\/\/www.postgresql.org\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">PostgreSQL<\/mark><\/a> database server should be installed and installed on the same host where odoo is running.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo apt-get install -y postgresql<\/strong><\/code><\/pre>\n\n\n\n<p>The following commands can be used to start the postgresql database server after the installation is completed. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo service postgresql start<\/code><\/pre>\n\n\n\n<p>Create an odoo user in the database. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo su - postgres<\/code><\/pre>\n\n\n\n<p>createuser &#8211;createdb &#8211;username postgres &#8211;no-createrole &#8211;no-superuser &#8211;pwprompt odoo<\/p>\n\n\n\n<p>Give the newly created role a password and then double-check it by providing another password. <\/p>\n\n\n\n<p>exit<br><br>Afterwards, restart the postgresql server.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo service postgresql restart <\/code><\/pre>\n\n\n\n<p>STEP 4 On the server, install python and its dependencies. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo apt-get install -y python3-pip<\/strong><\/code><\/pre>\n\n\n\n<p><strong>On the server, install python and its dependencies. <\/strong><\/p>\n\n\n\n<p>Install the required dependencies after logging in as the odoo user. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>pip3 install Babel decorator docutils ebaysdk feedparser gevent greenlet html2text Jinja2 lxml Mako MarkupSafe mock num2words ofxparse passlib Pillow psutil psycogreen psycopg2 pydot pyparsing PyPDF2 pyserial python-dateutil python-openid pytz pyusb PyYAML qrcode reportlab requests six suds-jurko vatnumber vobject Werkzeug XlsxWriter xlwt xlrd polib<\/strong><\/code><\/pre>\n\n\n\n<p><strong>STEP 5 : <\/strong>Dependencies of Odoo&#8217;s web service <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get install -y npm\nsudo ln -s \/usr\/bin\/nodejs \/usr\/bin\/node\nsudo npm install -g less less-plugin-clean-css\nsudo apt-get install -y node-less\nsudo python3 -m pip install libsass<\/code><\/pre>\n\n\n\n<p><strong>STEP 6<\/strong> : GITHUB is a good place to get Odoo 15&#8217;s community version.<\/p>\n\n\n\n<p>GIT can be installed using the command below.<br>If it&#8217;s already there, you can disregard this information. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo apt-get install -y git<\/strong><\/code><\/pre>\n\n\n\n<p>After that, log in as odoo user. <br><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo su - odoo -s \/bin\/bash<\/strong><\/code><\/pre>\n\n\n\n<p>The following commands will clone Odoo branch 15.0 from Github: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>git clone https:\/\/www.github.com\/odoo\/odoo --depth 1 --branch 15.0 --single-branch<\/strong><\/code><\/pre>\n\n\n\n<p>Exit the Odoo user at this point.<\/p>\n\n\n\n<p><strong>STEP 7 :<\/strong> Make an odoo configuration file. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo vim \/etc\/odoo-server.conf<\/strong><\/code><\/pre>\n\n\n\n<p>In the configuration file, paste the following text. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>&#91;options]\n; This is the password that allows database operations:\n; admin_passwd = admin\ndb_host = False\ndb_port = False\ndb_user = odoo\ndb_password = False\nlogfile = \/var\/log\/odoo\/odoo-server.log\naddons_path = \/opt\/odoo\/odoo\/addons,\/opt\/odoo\/odoo\/odoo\/addons<\/strong><\/code><\/pre>\n\n\n\n<p>Change the permissions and ownership of the configuration file, as shown in the following example. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo chown odoo: \/etc\/odoo-server.conf \nsudo chmod 640 \/etc\/odoo-server.conf<\/strong><\/code><\/pre>\n\n\n\n<p><strong>STEP 8<\/strong> : Create odoo log file<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo mkdir \/var\/log\/odoo \nsudo chown odoo:root \/var\/log\/odoo<\/strong><\/code><\/pre>\n\n\n\n<p><strong>STEP 9 <\/strong>:The script can be pasted into this file by copying it. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo vim \/etc\/init.d\/odoo-server<\/strong><\/code><\/pre>\n\n\n\n<p>Finally, transfer ownership and permissions. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo chmod 755 \/etc\/init.d\/odoo-server \nsudo chown root: \/etc\/init.d\/odoo-server<\/strong><\/code><\/pre>\n\n\n\n<p><strong>STEP 10<\/strong> : Run a test on the server as a service. <\/p>\n\n\n\n<p>To get the odoo server up and running again <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo \/etc\/init.d\/odoo-server start<\/strong><\/code><\/pre>\n\n\n\n<p>Stop the Odoo server <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo \/etc\/init.d\/odoo-server stop<\/strong><\/code><\/pre>\n\n\n\n<p>Analyze the odoo logs <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>tailf \/var\/log\/odoo\/odoo-server.log<\/strong><\/code><\/pre>\n\n\n\n<p>Now run the following command to make this service start automatically when your computer turns on. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>update-rc.d odoo-server defaults<\/strong><\/code><\/pre>\n\n\n\n<p><br><strong>STEP 11 <\/strong>: Run odoo locally<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo su - odoo -s \/bin\/bash \npython3 \/opt\/odoo\/odoo-bin<\/strong><\/code><\/pre>\n\n\n\n<p>After that, open a web browser and navigate to odoo15. <br><br><strong>http:\/\/localhost:8069<\/strong><br><br>or<br><br><strong>http:\/\/0.0.0.0:8069<\/strong><br><br><strong>STEP 12 <\/strong>: WKHTMLTOPDF<br><br><strong>wkhtmltopdf<\/strong> must be installed in order to print PDF reports. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo wget https:\/\/builds.wkhtmltopdf.org\/0.12.1.3\/wkhtmltox_0.12.1.3-1~bionic_amd64.deb \nsudo apt install .\/wkhtmltox_0.12.1.3-1~bionic_amd64.deb \nsudo cp \/usr\/local\/bin\/wkhtmltoimage \/usr\/bin\/wkhtmltoimage \nsudo cp \/usr\/local\/bin\/wkhtmltopdf \/usr\/bin\/wkhtmltopdf<\/strong><\/code><\/pre>\n\n\n\n<p><strong>HelptoInstall <\/strong>presents you with low-cost Odoo Installation Service. We have deployed <a href=\"https:\/\/www.hostnats.com\/blog\/\">our Experts<\/a> 24\/7 for the services. <br><br><br><br><br><br><strong><br><\/strong><br><br><br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Odoo&#8217;s version 14 was finally made available after a long wait.Odoo 14 was released last year and is now being prepped for release as Odoo 15.You&#8217;ll get a sneak peek at some of the new features in Odoo 15 when you read our guide.Simply follow the steps outlined below to install Odoo 15 on Ubuntu [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[49,278],"tags":[279,280,281,282],"class_list":["post-4067","post","type-post","status-publish","format-standard","hentry","category-blog","category-erp-installations","tag-how-to-install-odoo-15","tag-how-to-install-odoo-15-on-ubuntu","tag-odoo-installation","tag-odoo-installation-steps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.4 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How To Install Odoo 15 On Ubuntu? - Hostnats<\/title>\n<meta name=\"description\" content=\"Learn how to install Odoo 15 on Ubuntu step by step. Follow our easy guide to get started with Odoo today!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Install Odoo 15 On Ubuntu?\" \/>\n<meta property=\"og:description\" content=\"Learn how to install Odoo 15 on Ubuntu step by step. Follow our easy guide to get started with Odoo today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/\" \/>\n<meta property=\"og:site_name\" content=\"Hostnats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hostnats\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-29T06:14:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-30T12:19:16+00:00\" \/>\n<meta name=\"author\" content=\"Gopu Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hostnats\" \/>\n<meta name=\"twitter:site\" content=\"@hostnats\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Gopu Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/\"},\"author\":{\"name\":\"Gopu Kumar\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/#\/schema\/person\/e913d744f9f4f9a2ed5f95c409f5cc10\"},\"headline\":\"How To Install Odoo 15 On Ubuntu?\",\"datePublished\":\"2021-12-29T06:14:26+00:00\",\"dateModified\":\"2025-06-30T12:19:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/\"},\"wordCount\":381,\"publisher\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/#organization\"},\"keywords\":[\"how to install odoo 15\",\"how to install odoo 15 on ubuntu?\",\"odoo installation\",\"odoo installation steps\"],\"articleSection\":[\"Blog\",\"ERP Installations\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/\",\"url\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/\",\"name\":\"How To Install Odoo 15 On Ubuntu? - Hostnats\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/#website\"},\"datePublished\":\"2021-12-29T06:14:26+00:00\",\"dateModified\":\"2025-06-30T12:19:16+00:00\",\"description\":\"Learn how to install Odoo 15 on Ubuntu step by step. Follow our easy guide to get started with Odoo today!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.hostnats.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install Odoo 15 On Ubuntu?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/#website\",\"url\":\"https:\/\/www.hostnats.com\/blog\/\",\"name\":\"Hostnats\",\"description\":\"The Perfect Hosting Partner\",\"publisher\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.hostnats.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/#organization\",\"name\":\"Hostnats Hosting\",\"url\":\"https:\/\/www.hostnats.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.hostnats.com\/blog\/wp-content\/uploads\/2020\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.hostnats.com\/blog\/wp-content\/uploads\/2020\/07\/logo.png\",\"width\":66,\"height\":67,\"caption\":\"Hostnats Hosting\"},\"image\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/hostnats\",\"https:\/\/x.com\/hostnats\",\"https:\/\/www.instagram.com\/hostnats_hosting\/\",\"https:\/\/www.linkedin.com\/company\/hostnats\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/#\/schema\/person\/e913d744f9f4f9a2ed5f95c409f5cc10\",\"name\":\"Gopu Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/3a04e307992cf527a3f7224d55ec81767a1094f0278d86fb791aa46b3552bc8c?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3a04e307992cf527a3f7224d55ec81767a1094f0278d86fb791aa46b3552bc8c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3a04e307992cf527a3f7224d55ec81767a1094f0278d86fb791aa46b3552bc8c?s=96&d=mm&r=g\",\"caption\":\"Gopu Kumar\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How To Install Odoo 15 On Ubuntu? - Hostnats","description":"Learn how to install Odoo 15 on Ubuntu step by step. Follow our easy guide to get started with Odoo today!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"How To Install Odoo 15 On Ubuntu?","og_description":"Learn how to install Odoo 15 on Ubuntu step by step. Follow our easy guide to get started with Odoo today!","og_url":"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/","og_site_name":"Hostnats","article_publisher":"https:\/\/www.facebook.com\/hostnats","article_published_time":"2021-12-29T06:14:26+00:00","article_modified_time":"2025-06-30T12:19:16+00:00","author":"Gopu Kumar","twitter_card":"summary_large_image","twitter_creator":"@hostnats","twitter_site":"@hostnats","twitter_misc":{"Written by":"Gopu Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/#article","isPartOf":{"@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/"},"author":{"name":"Gopu Kumar","@id":"https:\/\/www.hostnats.com\/blog\/#\/schema\/person\/e913d744f9f4f9a2ed5f95c409f5cc10"},"headline":"How To Install Odoo 15 On Ubuntu?","datePublished":"2021-12-29T06:14:26+00:00","dateModified":"2025-06-30T12:19:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/"},"wordCount":381,"publisher":{"@id":"https:\/\/www.hostnats.com\/blog\/#organization"},"keywords":["how to install odoo 15","how to install odoo 15 on ubuntu?","odoo installation","odoo installation steps"],"articleSection":["Blog","ERP Installations"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/","url":"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/","name":"How To Install Odoo 15 On Ubuntu? - Hostnats","isPartOf":{"@id":"https:\/\/www.hostnats.com\/blog\/#website"},"datePublished":"2021-12-29T06:14:26+00:00","dateModified":"2025-06-30T12:19:16+00:00","description":"Learn how to install Odoo 15 on Ubuntu step by step. Follow our easy guide to get started with Odoo today!","breadcrumb":{"@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-odoo-15-on-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hostnats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Install Odoo 15 On Ubuntu?"}]},{"@type":"WebSite","@id":"https:\/\/www.hostnats.com\/blog\/#website","url":"https:\/\/www.hostnats.com\/blog\/","name":"Hostnats","description":"The Perfect Hosting Partner","publisher":{"@id":"https:\/\/www.hostnats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hostnats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hostnats.com\/blog\/#organization","name":"Hostnats Hosting","url":"https:\/\/www.hostnats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hostnats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hostnats.com\/blog\/wp-content\/uploads\/2020\/07\/logo.png","contentUrl":"https:\/\/www.hostnats.com\/blog\/wp-content\/uploads\/2020\/07\/logo.png","width":66,"height":67,"caption":"Hostnats Hosting"},"image":{"@id":"https:\/\/www.hostnats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hostnats","https:\/\/x.com\/hostnats","https:\/\/www.instagram.com\/hostnats_hosting\/","https:\/\/www.linkedin.com\/company\/hostnats"]},{"@type":"Person","@id":"https:\/\/www.hostnats.com\/blog\/#\/schema\/person\/e913d744f9f4f9a2ed5f95c409f5cc10","name":"Gopu Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3a04e307992cf527a3f7224d55ec81767a1094f0278d86fb791aa46b3552bc8c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3a04e307992cf527a3f7224d55ec81767a1094f0278d86fb791aa46b3552bc8c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3a04e307992cf527a3f7224d55ec81767a1094f0278d86fb791aa46b3552bc8c?s=96&d=mm&r=g","caption":"Gopu Kumar"}}]}},"_links":{"self":[{"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/posts\/4067","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/comments?post=4067"}],"version-history":[{"count":1,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/posts\/4067\/revisions"}],"predecessor-version":[{"id":6266,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/posts\/4067\/revisions\/6266"}],"wp:attachment":[{"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/media?parent=4067"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/categories?post=4067"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/tags?post=4067"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}