{"id":3938,"date":"2021-11-15T22:25:54","date_gmt":"2021-11-15T16:55:54","guid":{"rendered":"https:\/\/www.helptoinstall.com\/?p=3938"},"modified":"2026-03-31T15:33:55","modified_gmt":"2026-03-31T10:03:55","slug":"how-to-install-influxdb-on-ubuntu-20-04","status":"publish","type":"post","link":"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/","title":{"rendered":"How To Install InfluxDB On Ubuntu 20.04?"},"content":{"rendered":"\n<p>Let me make you clear about InfluxDB first. It provides the ease of a powerful API for making apps without any complicated coding forms. It is generally with less code, effortless and fewer configurations as well.<\/p>\n\n\n\n<p><strong><a href=\"https:\/\/www.helptoinstall.com\/\">HelptoInstall&#8217;s<\/a> Expert Admin Panel<\/strong> is recommended to have an Ubuntu Server and a Sudo user in order to begin.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Download And Install The InfluxDB Package<\/h2>\n\n\n\n<p>First of all, we have to install the influx DB server by pulling the installation from the official repository.<\/p>\n\n\n\n<p>We will SSH to the server. After that, we have to download and add the influx DB GPG key into the server we run.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ sudo curl -sL <a href=\"https:\/\/repos.influxdata.com\/influxdb.key\">https:\/\/repos.influxdata.com\/influxdb.key | sudo apt-key add -<\/a>\n<\/strong>\nThe command will be resulted in an OK message.\nThen, we will add a new influxdb.list repo file to the available packages list.\n\n<strong>$ sudo echo \"deb https:\/\/repos.influxdata.com\/ubuntu bionic stable\" | sudo tee \/etc\/apt\/sources.list.d\/influxdb.list\n<\/strong>\nAfter that, the next thing we have to do is the updation of package information index:\n\n<strong>$ sudo apt update<\/strong>\n\nThen, we have to install the package information index:\n\n<strong>$ sudo system ctl start influxdb<\/strong>\n\nThe package will be active and loaded on the server.\n\n<strong>Influxdb.service- influx DB is an open-source, distributed, time ser loaded : C\/lib\/systemd\/system\/influxdb-service;enabled;vendc\nActive:active (running) since Fri 2021-09-03\n06:08:59 UTC;2min3s\nDocs:https:\/\/docs.influxdata.com\/influxdb\/<\/strong>\n\n\n\n\n\n\n\n\n\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Configuration Of The InfluxDB Server<\/h2>\n\n\n\n<p>After all, we have to configure a new admin user along with root privileges for the influx DB server.<\/p>\n\n\n\n<p>For this, we have to execute the influx command.<\/p>\n\n\n\n<p><strong>$ influx<\/strong><\/p>\n\n\n\n<p>This help you to see the current connection, port, and version number.<\/p>\n\n\n\n<p>Connected to http:\/\/localhost:8086 version 1.8.9 influx DB shell version: 1.8.9<\/p>\n\n\n\n<p>&gt;<\/p>\n\n\n\n<p>(It means that the influx DB is ready to accept commands)<\/p>\n\n\n\n<p>For creating an admin account, we run:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>CREATE USER admin WITH PASSWORD &#8216;EXAMPLE_PASSWORD WITH ALL PRIVIL<\/p><p>Additionally, you should make sure to replace EXAMPLE_PASSWORD along with a strong value.<\/p><p>Then, we exit from the influxDB shell: &gt; quit<\/p><p>Fina;lly, we will have to get the authentication enabled. We have to modify the main influxDB configuration file for doing it.<\/p><p>Use nano to open the <strong>\/etc\/influxdb\/influxdb.conf file<\/strong>.<\/p><p><strong>$sudo nano \/etc\/influxdb\/influxdb.conf<\/strong><\/p><p>Then we locate the line #auth-enabled = false under the (http) section<\/p><p>&#8230;<\/p><p>(http)<\/p><p>&#8230;<\/p><p>#determines whether user authentication is enabled over HTTP\/HTTPS.<\/p><p>#auth-enabled=false<\/p><p>&#8230;<\/p><p>Now, we can change the value of enabled auth to true and remove the leading symbol from the line to uncomment the setting<\/p><p>&#8230;<\/p><p>(http)<\/p><p>&#8230;<\/p><p>#determines whether user authentication is enabled over HTTP\/HTTPS.<\/p><p>auth-enabled = true<\/p><p>&#8230;<\/p><p>Finally, we save and close the file.<\/p><p>Then, the next step is to load the new security setting, we have to restart the influxdb service.<\/p><p>$sudo system &#8216;t&#8217; restart influxdb. Then, we can go and log into the influxDB server with the username of admin and password that we set: $influx &#8211; username &#8216;admin&#8217; &#8211; password &#8220;EXAMPLE PASSWORD&#8221;<\/p><p>For verifying the commands and to make sure everything is working, we run<\/p><p><strong>&gt; SHOW DATABASES<\/strong><\/p><p>After that, we will see a default, internal databvase in the list like :<\/p><p><strong>name : databases<\/strong><\/p><p><strong>name<\/strong><\/p><p><strong>&#8230;&#8230;&#8230;<\/strong><\/p><p><strong>-internal<\/strong><\/p><p><\/p><\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">To Create An InfluDB Database<\/h2>\n\n\n\n<p>Moving on, we will set up a sample database a strong matrix.<\/p>\n\n\n\n<p>We create the water-DB database on the influx shell. To do that, we have to run:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>CREATE DATABASE water_db.<\/p><p>and we should click enter.<\/p><p>That will show the symbol &#8220;&gt;&#8221;, that means the command execution has no errors.<\/p><p>Then, we can verify whether we have successfully set up the ater_db database or not.<\/p><p>&gt;SHOW DATBASES<\/p><p>This will give us two databases list <\/p><p><strong>name: database<\/strong><\/p><p><strong>name<\/strong><\/p><p><strong>&#8212;&#8212;-<\/strong><\/p><p><strong>_internal<\/strong><\/p><p><strong>water_db<\/strong><\/p><\/blockquote>\n\n\n\n<p>The database is all set to accept new data.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Write influxDB Data<\/h2>\n\n\n\n<p>Execute additional InfluxQL statements against the new water-DB database.<\/p>\n\n\n\n<p>Switch to the new water_db database. For the web have to run:<\/p>\n\n\n\n<p>&gt;USE water_db<\/p>\n\n\n\n<p>We will get similar output like on the following line<\/p>\n\n\n\n<p>Using database water_db<\/p>\n\n\n\n<p>Now, this database can accept writes and queries.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">InfluxDB HTTP API<\/h2>\n\n\n\n<p>We all know that InfluxDB is built for developers. It has a very useful API querying metrics with common tools that are allowed without writing additional codes.<\/p>\n\n\n\n<p>For that we run<\/p>\n\n\n\n<p>S Curl &#8211; G &#8216;https : localhost : 8086 \/ query?<\/p>\n\n\n\n<p>Pretty=true-uadmin : EXAMPLE<\/p>\n\n\n\n<p>Ensure to replace EXAMPLE_PASSWORD with the correct password value.<\/p>\n\n\n\n<p>The outlook will be similar as follows<\/p>\n\n\n\n<p>The output will look similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n\"results\": [\n{\n\"statement_id\": 0,\n\"series\": [\n{\n\"name\": \"water_level\",\n\"columns\": [\n\"time\",\n\"tank_location\",\n\"value_in_ft\"\n],\n\"values\": [\n[\n\"2021-09-03T09:07:04.738274574Z\",\n\"MIAMI\",\n10\n],\n[\n\"2021-09-03T09:07:13.290269685Z\",\n\"SEATTLE\",\n5.4\n],\n[\n\"2021-09-03T09:07:29.030041003Z\",\n\"DALLAS\",\n3.2\n],\n[\n\"2021-09-03T09:08:16.340252215Z\",\n\"LOS-ANGELES\",\n1.3\n]\n]\n}\n]\n}\n]\n}<\/pre>\n\n\n\n<p>Eventually, the Influx DB Server and API will work.<\/p>\n\n\n\n<p>Consider <a href=\"https:\/\/www.helptoinstall.com\/\">HelptoInstall<\/a> if you face any issues.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Let me make you clear about InfluxDB first. It provides the ease of a powerful API for making apps without any complicated coding forms. It is generally with less code, effortless and fewer configurations as well. HelptoInstall&#8217;s Expert Admin Panel is recommended to have an Ubuntu Server and a Sudo user in order to begin. [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[49,204],"tags":[202,203],"class_list":["post-3938","post","type-post","status-publish","format-standard","hentry","category-blog","category-server-management","tag-how-to-install-influxdb-on-ubuntu","tag-how-to-install-influxdb-on-ubuntu-20-04"],"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>Install InfluxDB on Ubuntu 20.04 \u2013 Easy Guide<\/title>\n<meta name=\"description\" content=\"Install InfluxDB on Ubuntu 20.04 with ease\u2014follow our step-by-step guide and set up your database quickly. Get started now!\" \/>\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-influxdb-on-ubuntu-20-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Install InfluxDB On Ubuntu 20.04?\" \/>\n<meta property=\"og:description\" content=\"Install InfluxDB on Ubuntu 20.04 with ease\u2014follow our step-by-step guide and set up your database quickly. Get started now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/\" \/>\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-11-15T16:55:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-31T10:03:55+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-influxdb-on-ubuntu-20-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/\"},\"author\":{\"name\":\"Gopu Kumar\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/#\/schema\/person\/e913d744f9f4f9a2ed5f95c409f5cc10\"},\"headline\":\"How To Install InfluxDB On Ubuntu 20.04?\",\"datePublished\":\"2021-11-15T16:55:54+00:00\",\"dateModified\":\"2026-03-31T10:03:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/\"},\"wordCount\":638,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/#organization\"},\"keywords\":[\"how to install influxdb on ubuntu\",\"how to install influxdb on ubuntu 20.04\"],\"articleSection\":[\"Blog\",\"server management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/\",\"url\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/\",\"name\":\"Install InfluxDB on Ubuntu 20.04 \u2013 Easy Guide\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/#website\"},\"datePublished\":\"2021-11-15T16:55:54+00:00\",\"dateModified\":\"2026-03-31T10:03:55+00:00\",\"description\":\"Install InfluxDB on Ubuntu 20.04 with ease\u2014follow our step-by-step guide and set up your database quickly. Get started now!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.hostnats.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install InfluxDB On Ubuntu 20.04?\"}]},{\"@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":"Install InfluxDB on Ubuntu 20.04 \u2013 Easy Guide","description":"Install InfluxDB on Ubuntu 20.04 with ease\u2014follow our step-by-step guide and set up your database quickly. Get started now!","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-influxdb-on-ubuntu-20-04\/","og_locale":"en_US","og_type":"article","og_title":"How To Install InfluxDB On Ubuntu 20.04?","og_description":"Install InfluxDB on Ubuntu 20.04 with ease\u2014follow our step-by-step guide and set up your database quickly. Get started now!","og_url":"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/","og_site_name":"Hostnats","article_publisher":"https:\/\/www.facebook.com\/hostnats","article_published_time":"2021-11-15T16:55:54+00:00","article_modified_time":"2026-03-31T10:03:55+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-influxdb-on-ubuntu-20-04\/#article","isPartOf":{"@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/"},"author":{"name":"Gopu Kumar","@id":"https:\/\/www.hostnats.com\/blog\/#\/schema\/person\/e913d744f9f4f9a2ed5f95c409f5cc10"},"headline":"How To Install InfluxDB On Ubuntu 20.04?","datePublished":"2021-11-15T16:55:54+00:00","dateModified":"2026-03-31T10:03:55+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/"},"wordCount":638,"commentCount":0,"publisher":{"@id":"https:\/\/www.hostnats.com\/blog\/#organization"},"keywords":["how to install influxdb on ubuntu","how to install influxdb on ubuntu 20.04"],"articleSection":["Blog","server management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/","url":"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/","name":"Install InfluxDB on Ubuntu 20.04 \u2013 Easy Guide","isPartOf":{"@id":"https:\/\/www.hostnats.com\/blog\/#website"},"datePublished":"2021-11-15T16:55:54+00:00","dateModified":"2026-03-31T10:03:55+00:00","description":"Install InfluxDB on Ubuntu 20.04 with ease\u2014follow our step-by-step guide and set up your database quickly. Get started now!","breadcrumb":{"@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-influxdb-on-ubuntu-20-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hostnats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Install InfluxDB On Ubuntu 20.04?"}]},{"@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\/3938","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=3938"}],"version-history":[{"count":1,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/posts\/3938\/revisions"}],"predecessor-version":[{"id":6606,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/posts\/3938\/revisions\/6606"}],"wp:attachment":[{"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/media?parent=3938"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/categories?post=3938"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/tags?post=3938"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}