{"id":15233,"date":"2025-07-15T18:25:38","date_gmt":"2025-07-15T12:55:38","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15233"},"modified":"2025-07-15T18:25:41","modified_gmt":"2025-07-15T12:55:41","slug":"how-to-install-etcd-on-ubuntu-24-04","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-install-etcd-on-ubuntu-24-04\/","title":{"rendered":"How to Install etcd on Ubuntu 24.04"},"content":{"rendered":"\n<p>etcd is a distributed key-value store used widely in modern infrastructure stacks like Kubernetes, service meshes, and microservice systems. It&#8217;s reliable, lightweight, and production-ready.This guide focuses on Install etcd on <a href=\"https:\/\/ubuntu.com\/blog\/tag\/ubuntu-24-04-lts\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Ubuntu 24.04.<\/mark><\/a><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Distributed Configuration &amp; Coordination<br>etcd provides strong consistency and distributed coordination using the Raft algorithm\u00a0 making it ideal for shared configs.<br><\/li>\n\n\n\n<li>Service Discovery<br>Applications can register themselves and discover each other via etcd.<br><\/li>\n\n\n\n<li>Critical Component in Kubernetes<br>Kubernetes stores all its cluster data (pods, services, secrets, configs) in etcd.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-steps-to-install-etcd-on-ubuntu-24-04\">Steps to install etcd on Ubuntu 24.04<\/h2>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-update-package-lists\"><strong>Update Package Lists<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get update<\/code><\/pre>\n\n\n\n<p>Download etcd from GitHub<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/github.com\/etcd-io\/etcd\/releases\/download\/v3.6.2\/etcd-v3.6.2-linux-amd64.tar.gz<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-extract-the-tar-file\"><strong>Extract the Tar File<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>tar -xvzf etcd-v3.6.2-linux-amd64.tar.gz\ncd etcd-v3.6.2-linux-amd64\/<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-move-binaries-to-a-system-path\"><strong>Move Binaries to a System Path<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mv etcd etcdctl \/usr\/local\/bin\/<\/code><\/pre>\n\n\n\n<p>Check versions:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>etcd --version\n\netcdctl version<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-create-required-directories\"><strong>Create Required Directories<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mkdir -p \/etc\/etcd \/var\/lib\/etcd<\/code><\/pre>\n\n\n\n<p>Create etcd System User<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo useradd -r -s \/sbin\/nologin etcd<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-create-a-systemd-service-file-for-etc\"><strong>Create a systemd Service File for etc<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>vim \/etc\/systemd\/system\/etcd.service <\/code><\/pre>\n\n\n\n<p>[Unit]<\/p>\n\n\n\n<p>Description=etcd key-value store<\/p>\n\n\n\n<p>Documentation=https:\/\/etcd.io\/docs\/<\/p>\n\n\n\n<p>After=network.target<\/p>\n\n\n\n<p>[Service]<\/p>\n\n\n\n<p>User=etcd<\/p>\n\n\n\n<p>Type=notify<\/p>\n\n\n\n<p>ExecStart=\/usr\/local\/bin\/etcd \\\\<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8211;name default \\\\<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8211;data-dir \/var\/lib\/etcd \\\\<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8211;listen-client-urls http:\/\/0.0.0.0:2379 \\\\<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8211;advertise-client-urls http:\/\/localhost:2379<\/p>\n\n\n\n<p>Restart=on-failure<\/p>\n\n\n\n<p>LimitNOFILE=40000<\/p>\n\n\n\n<p>[Install]<\/p>\n\n\n\n<p>WantedBy=multi-user.target<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-reload-systemd-and-enable-the-service\"><strong>Reload systemd and Enable the Service<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl daemon-reload\nsudo systemctl enable etcd<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-fix-permissions-important\"><strong>\u00a0Fix Permissions (important)<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chown -R etcd:etcd \/var\/lib\/etcd\nsudo chmod 700 \/var\/lib\/etcd<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-start-etcd\"><strong>\u00a0Start etcd<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl start etcd<\/code><\/pre>\n\n\n\n<p>Check its status:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl status etcd<\/code><\/pre>\n\n\n\n<p>If needed, view logs:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>journalctl -xeu etcd.service<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-test-etcd-works\"><strong>Test etcd Works<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>etcdctl put hello \"Ubuntu 24.04\"\netcdctl get hello<\/code><\/pre>\n\n\n\n<p>Expected output:<br>hello<\/p>\n\n\n\n<p>Ubuntu 24.04<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-conclusion\"><strong>conclusion<\/strong><\/h3>\n\n\n\n<p>You have successfully installed and configured etcd on Ubuntu 24.04 from the official release, set it up as a systemd service, and verified that it\u2019s functioning correctly. This setup forms a solid foundation for building reliable, distributed systems. Whether you&#8217;re using etcd as the backbone for Kubernetes, for service discovery in microservices, or as a centralized configuration store, it provides the consistency and reliability essential in modern infrastructure. With etcd running smoothly, you&#8217;re now well-equipped to scale your system, add clustering, or secure communication using TLS \u2014 all while keeping your data consistent and your services coordinated.<\/p>\n\n\n\n<p>If you need expert assistance with Installing etcd on Ubuntu 24.04 or setting up your infrastructure reliably, our team is here to help. Skynats offers professional <a href=\"https:\/\/www.skynats.com\/devops-support\/\">DevOps support services<\/a> to streamline your deployment and ensure high availability. contact us today to get started!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>etcd is a distributed key-value store used widely in modern infrastructure stacks like Kubernetes, service meshes, and microservice systems. It&#8217;s reliable, lightweight, and production-ready.This guide focuses on Install etcd on Ubuntu 24.04. Steps to install etcd on Ubuntu 24.04 Update Package Lists Download etcd from GitHub Extract the Tar File Move Binaries to a System [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1064,1065,899],"class_list":["post-15233","post","type-post","status-publish","format-standard","hentry","category-blog","tag-devops-support-services","tag-install-etcd-ubuntu-24-04","tag-ubuntu-24-04"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Installing etcd on Ubuntu 24.04: Step-by-Step Guide<\/title>\n<meta name=\"description\" content=\"Installing etcd on Ubuntu 24.04 made easy with our step-by-step guide. Follow now to set up your etcd server in minutes!\" \/>\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.skynats.com\/blog\/how-to-install-etcd-on-ubuntu-24-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 etcd on Ubuntu 24.04\" \/>\n<meta property=\"og:description\" content=\"Installing etcd on Ubuntu 24.04 made easy with our step-by-step guide. Follow now to set up your etcd server in minutes!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-install-etcd-on-ubuntu-24-04\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-15T12:55:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-15T12:55:41+00:00\" \/>\n<meta name=\"author\" content=\"Sajna VM\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sajna VM\" \/>\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.skynats.com\\\/blog\\\/how-to-install-etcd-on-ubuntu-24-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-etcd-on-ubuntu-24-04\\\/\"},\"author\":{\"name\":\"Sajna VM\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/670799cac44dade2781ac6c4973426be\"},\"headline\":\"How to Install etcd on Ubuntu 24.04\",\"datePublished\":\"2025-07-15T12:55:38+00:00\",\"dateModified\":\"2025-07-15T12:55:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-etcd-on-ubuntu-24-04\\\/\"},\"wordCount\":339,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"devops support services\",\"install etcd ubuntu 24.04\",\"Ubuntu 24.04\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-etcd-on-ubuntu-24-04\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-etcd-on-ubuntu-24-04\\\/\",\"name\":\"Installing etcd on Ubuntu 24.04: Step-by-Step Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-07-15T12:55:38+00:00\",\"dateModified\":\"2025-07-15T12:55:41+00:00\",\"description\":\"Installing etcd on Ubuntu 24.04 made easy with our step-by-step guide. Follow now to set up your etcd server in minutes!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-etcd-on-ubuntu-24-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-etcd-on-ubuntu-24-04\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-etcd-on-ubuntu-24-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install etcd on Ubuntu 24.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/670799cac44dade2781ac6c4973426be\",\"name\":\"Sajna VM\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"caption\":\"Sajna VM\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Installing etcd on Ubuntu 24.04: Step-by-Step Guide","description":"Installing etcd on Ubuntu 24.04 made easy with our step-by-step guide. Follow now to set up your etcd server in minutes!","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.skynats.com\/blog\/how-to-install-etcd-on-ubuntu-24-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install etcd on Ubuntu 24.04","og_description":"Installing etcd on Ubuntu 24.04 made easy with our step-by-step guide. Follow now to set up your etcd server in minutes!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-install-etcd-on-ubuntu-24-04\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-07-15T12:55:38+00:00","article_modified_time":"2025-07-15T12:55:41+00:00","author":"Sajna VM","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sajna VM","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-etcd-on-ubuntu-24-04\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-etcd-on-ubuntu-24-04\/"},"author":{"name":"Sajna VM","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/670799cac44dade2781ac6c4973426be"},"headline":"How to Install etcd on Ubuntu 24.04","datePublished":"2025-07-15T12:55:38+00:00","dateModified":"2025-07-15T12:55:41+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-etcd-on-ubuntu-24-04\/"},"wordCount":339,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["devops support services","install etcd ubuntu 24.04","Ubuntu 24.04"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-etcd-on-ubuntu-24-04\/","url":"https:\/\/www.skynats.com\/blog\/how-to-install-etcd-on-ubuntu-24-04\/","name":"Installing etcd on Ubuntu 24.04: Step-by-Step Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-07-15T12:55:38+00:00","dateModified":"2025-07-15T12:55:41+00:00","description":"Installing etcd on Ubuntu 24.04 made easy with our step-by-step guide. Follow now to set up your etcd server in minutes!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-etcd-on-ubuntu-24-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-install-etcd-on-ubuntu-24-04\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-etcd-on-ubuntu-24-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install etcd on Ubuntu 24.04"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/670799cac44dade2781ac6c4973426be","name":"Sajna VM","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","caption":"Sajna VM"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15233","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=15233"}],"version-history":[{"count":3,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15233\/revisions"}],"predecessor-version":[{"id":15239,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15233\/revisions\/15239"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15233"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15233"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15233"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}