{"id":2660,"date":"2025-08-25T10:31:16","date_gmt":"2025-08-25T10:31:16","guid":{"rendered":"https:\/\/www.devopsconsulting.in\/blog\/?p=2660"},"modified":"2025-08-25T10:31:17","modified_gmt":"2025-08-25T10:31:17","slug":"how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide","status":"publish","type":"post","link":"https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/","title":{"rendered":"How to Fix Keycloak &#8216;Local Access Required&#8217; Error: A Step-by-Step Guide"},"content":{"rendered":"\n<p>Here is a step-by-step guide to correctly configure and start your Keycloak server and resolve the &#8220;Local access required&#8221; error permanently.<br><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"816\" height=\"570\" src=\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2025\/08\/image-2.png\" alt=\"\" class=\"wp-image-2661\" srcset=\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2025\/08\/image-2.png 816w, https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2025\/08\/image-2-300x210.png 300w, https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2025\/08\/image-2-768x536.png 768w\" sizes=\"auto, (max-width: 816px) 100vw, 816px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Stop the Keycloak Server<\/h2>\n\n\n\n<p>First, ensure that any running instance of the Keycloak server is stopped. This is crucial because some configurations are only applied on the first startup.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Set All Required Environment Variables in One Session<\/h2>\n\n\n\n<p>When you <code>export<\/code> a variable in your shell, it is only set for that current session. If you close the terminal or start a new one, those variables will be gone. You need to set all the required variables for your configuration in the same shell session where you will run the <code>start<\/code> command.<\/p>\n\n\n\n<p>Combine all your configuration and startup into a single script or run them sequentially in the same terminal.<\/p>\n\n\n\n<p><strong>Correct Environment Variables:<\/strong><\/p>\n\n\n\n<p>Instead of using <code>KEYCLOAK_ADMIN_PASSWORD<\/code>, for the initial admin creation you should use <code>KEYCLOAK_ADMIN<\/code> and <code>KEYCLOAK_ADMIN_PASSWORD<\/code>.<\/p>\n\n\n\n<p>Open your terminal and execute the following commands in order:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">bash<code><em># --- Database Configuration ---<\/em>export KC_DB=mariadbexport KC_DB_URL='jdbc:mariadb:\/\/localhost:3306\/keycloak_db?socket=\/opt\/lampp\/var\/mysql\/mysql.sock'export KC_DB_USERNAME='db_user_name'export KC_DB_PASSWORD='<code>db_user_<\/code><\/code>password<code>'<em># --- Initial Admin User Configuration ---<\/em>export KEYCLOAK_ADMIN=adminexport KEYCLOAK_ADMIN_PASSWORD=admin@123<em># --- Make Script Executable (if not already done) ---<\/em>chmod +x bin\/kc.sh<em># --- Start the Keycloak Server ---<\/em>bin\/kc.sh start --optimized<\/code><\/pre>\n\n\n\n<p><strong>Important Notes:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><code>--optimized<\/code> Flag:<\/strong> The <code>--optimized<\/code> flag is for subsequent startups after the initial setup. For the very first start, you might want to run <code>bin\/kc.sh build<\/code> first to apply the configuration, and then <code>bin\/kc.sh start<\/code>. However, <code>start --optimized<\/code> should also work if the configuration is passed correctly via environment variables.<\/li>\n\n\n\n<li><strong>Database URL:<\/strong> I&#8217;ve corrected a small detail in your database URL. Using a Unix socket is often more reliable for local connections than a TCP connection to <code>localhost<\/code>. Your original URL was likely fine, but this is a common practice.<\/li>\n\n\n\n<li><strong>Security:<\/strong> Using <code>root<\/code> for your database connection and simple passwords like &#8220;abhishek&#8221; is not recommended for production environments. You should create a dedicated database user with limited privileges for Keycloak and use strong, unique passwords.<\/li>\n<\/ul>\n\n\n\n<p>By following these steps, you are telling Keycloak to connect to your MariaDB database and, upon its first startup, to create an initial administrative user with the credentials you provided. This will bypass the &#8220;Local access required&#8221; screen entirely.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here is a step-by-step guide to correctly configure and start your Keycloak server and resolve the &#8220;Local access required&#8221; error permanently. Step 1: Stop the Keycloak Server&#8230; <\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[1430,1427,1426,1425,1429,1428],"class_list":["post-2660","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-create-keycloak-admin-user","tag-keycloak-bootstrap-admin","tag-keycloak-initial-admin-user","tag-keycloak-local-access-required","tag-keycloak-permission-denied","tag-keycloak_admin-environment-variable"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Fix Keycloak &#039;Local Access Required&#039; Error: A Step-by-Step Guide - DevOps Consulting<\/title>\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.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix Keycloak &#039;Local Access Required&#039; Error: A Step-by-Step Guide - DevOps Consulting\" \/>\n<meta property=\"og:description\" content=\"Here is a step-by-step guide to correctly configure and start your Keycloak server and resolve the &#8220;Local access required&#8221; error permanently. Step 1: Stop the Keycloak Server...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-25T10:31:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-25T10:31:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2025\/08\/image-2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"816\" \/>\n\t<meta property=\"og:image:height\" content=\"570\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Abhishek Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abhishek Singh\" \/>\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.devopsconsulting.in\\\/blog\\\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\\\/\"},\"author\":{\"name\":\"Abhishek Singh\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#\\\/schema\\\/person\\\/fc397ba8be42f9fdd53450edfc73006f\"},\"headline\":\"How to Fix Keycloak &#8216;Local Access Required&#8217; Error: A Step-by-Step Guide\",\"datePublished\":\"2025-08-25T10:31:16+00:00\",\"dateModified\":\"2025-08-25T10:31:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\\\/\"},\"wordCount\":322,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/image-2.png\",\"keywords\":[\"Create Keycloak admin user\",\"Keycloak bootstrap-admin\",\"Keycloak initial admin user\",\"Keycloak Local access required\",\"Keycloak permission denied\",\"KEYCLOAK_ADMIN environment variable:\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\\\/\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\\\/\",\"name\":\"How to Fix Keycloak 'Local Access Required' Error: A Step-by-Step Guide - DevOps Consulting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/image-2.png\",\"datePublished\":\"2025-08-25T10:31:16+00:00\",\"dateModified\":\"2025-08-25T10:31:17+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#\\\/schema\\\/person\\\/fc397ba8be42f9fdd53450edfc73006f\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/image-2.png\",\"contentUrl\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/image-2.png\",\"width\":816,\"height\":570},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/\",\"name\":\"DevOps Consulting\",\"description\":\"DevOps Consulting | SRE Consulting | DevSecOps Consulting | MLOps Consulting\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#\\\/schema\\\/person\\\/fc397ba8be42f9fdd53450edfc73006f\",\"name\":\"Abhishek Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"caption\":\"Abhishek Singh\"},\"description\":\"I\u2019m Abhishek, a DevOps, SRE, DevSecOps, and Cloud expert with a passion for sharing knowledge and real-world experiences. I\u2019ve had the opportunity to work with Cotocus and continue to contribute to multiple platforms where I share insights across different domains: \u2022 DevOps School \u2013 Tech blogs and tutorials \u2022 Holiday Landmark \u2013 Travel stories and guides \u2022 Stocks Mantra \u2013 Stock market strategies and tips \u2022 My Medic Plus \u2013 Health and fitness guidance \u2022 TrueReviewNow \u2013 Honest product reviews \u2022 Wizbrand \u2013 SEO and digital tools for businesses I\u2019m also exploring the fascinating world of Quantum Computing.\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/author\\\/abhishek\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Fix Keycloak 'Local Access Required' Error: A Step-by-Step Guide - DevOps Consulting","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.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/","og_locale":"en_US","og_type":"article","og_title":"How to Fix Keycloak 'Local Access Required' Error: A Step-by-Step Guide - DevOps Consulting","og_description":"Here is a step-by-step guide to correctly configure and start your Keycloak server and resolve the &#8220;Local access required&#8221; error permanently. Step 1: Stop the Keycloak Server...","og_url":"https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/","og_site_name":"DevOps Consulting","article_published_time":"2025-08-25T10:31:16+00:00","article_modified_time":"2025-08-25T10:31:17+00:00","og_image":[{"width":816,"height":570,"url":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2025\/08\/image-2.png","type":"image\/png"}],"author":"Abhishek Singh","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Abhishek Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/#article","isPartOf":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/"},"author":{"name":"Abhishek Singh","@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f"},"headline":"How to Fix Keycloak &#8216;Local Access Required&#8217; Error: A Step-by-Step Guide","datePublished":"2025-08-25T10:31:16+00:00","dateModified":"2025-08-25T10:31:17+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/"},"wordCount":322,"commentCount":0,"image":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2025\/08\/image-2.png","keywords":["Create Keycloak admin user","Keycloak bootstrap-admin","Keycloak initial admin user","Keycloak Local access required","Keycloak permission denied","KEYCLOAK_ADMIN environment variable:"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/","url":"https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/","name":"How to Fix Keycloak 'Local Access Required' Error: A Step-by-Step Guide - DevOps Consulting","isPartOf":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/#primaryimage"},"image":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2025\/08\/image-2.png","datePublished":"2025-08-25T10:31:16+00:00","dateModified":"2025-08-25T10:31:17+00:00","author":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-fix-keycloak-local-access-required-error-a-step-by-step-guide\/#primaryimage","url":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2025\/08\/image-2.png","contentUrl":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2025\/08\/image-2.png","width":816,"height":570},{"@type":"WebSite","@id":"https:\/\/www.devopsconsulting.in\/blog\/#website","url":"https:\/\/www.devopsconsulting.in\/blog\/","name":"DevOps Consulting","description":"DevOps Consulting | SRE Consulting | DevSecOps Consulting | MLOps Consulting","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopsconsulting.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f","name":"Abhishek Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","caption":"Abhishek Singh"},"description":"I\u2019m Abhishek, a DevOps, SRE, DevSecOps, and Cloud expert with a passion for sharing knowledge and real-world experiences. I\u2019ve had the opportunity to work with Cotocus and continue to contribute to multiple platforms where I share insights across different domains: \u2022 DevOps School \u2013 Tech blogs and tutorials \u2022 Holiday Landmark \u2013 Travel stories and guides \u2022 Stocks Mantra \u2013 Stock market strategies and tips \u2022 My Medic Plus \u2013 Health and fitness guidance \u2022 TrueReviewNow \u2013 Honest product reviews \u2022 Wizbrand \u2013 SEO and digital tools for businesses I\u2019m also exploring the fascinating world of Quantum Computing.","url":"https:\/\/www.devopsconsulting.in\/blog\/author\/abhishek\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/2660","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/comments?post=2660"}],"version-history":[{"count":1,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/2660\/revisions"}],"predecessor-version":[{"id":2662,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/2660\/revisions\/2662"}],"wp:attachment":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/media?parent=2660"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/categories?post=2660"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/tags?post=2660"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}