{"id":3192,"date":"2020-06-06T00:01:00","date_gmt":"2020-06-05T18:31:00","guid":{"rendered":"https:\/\/www.24x7serversupport.com\/blog\/?p=3192"},"modified":"2023-01-26T17:45:14","modified_gmt":"2023-01-26T12:15:14","slug":"an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary","status":"publish","type":"post","link":"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/","title":{"rendered":"An operation fails in Plesk: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry &#8216;X&#8217; for key &#8216;PRIMARY&#8217;"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Symptoms<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>When adding a customer, subscription, mail account, mailing list, IP address, changing domain hosting type or installing a Let&#8217;s Encrypt SSL certificate in Plesk, the operation fails with one of the following error messages: Error: DB query failed: <strong>SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry<\/strong> &#8216;X&#8217; for key &#8216;PRIMARY&#8217;, query was: replace &lt;table_name&gt; set &#8230; Error: Could not issue a Let&#8217;s Encrypt SSL\/TLS certificate for example.com.<br>Details<br>Failed to execute XML-RPC operation &#8216;install\/certificate&#8217;: DB query failed: <strong>SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry<\/strong> &#8216;X&#8217; for key &#8216;PRIMARY&#8217;, query was: replace &lt;table_name&gt; set &#8230; Could not issue a Let&#8217;s Encrypt SSL\/TLS certificate for example.com.<br>Details<br>Failed to execute XML-RPC operation &#8216;install\/certificate&#8217;: DB query failed:<br>&#8220;replace certificates set id=&#8217;0&#8242;, name=&#8217;Lets Encrypt example.com&#8217;, csr=&#8217;&#8212;&#8211;BEGIN+CERTIFICATE+REQUEST&#8212;-<\/li>\n\n\n\n<li>When installing a custom instance of WordPress at <strong>Domains<\/strong> &gt; <strong>example.com<\/strong> &gt; <strong>WordPress<\/strong> &gt; <strong>Install<\/strong> &gt; <strong>Install (Custom)<\/strong>, the operation loads continuously and no errors appear.<\/li>\n\n\n\n<li>The <code>AUTO_INCREMENT<\/code> value for the table from the error message is equal or less than max PRIMARY KEY value of this table:<\/li>\n\n\n\n<li>plesk db -Ne&#8217;SELECT CONCAT(&#8220;Auto increment value: &#8220;, AUTO_INCREMENT) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = &#8220;psa&#8221; AND TABLE_NAME = &#8220;<strong>DomainServices<\/strong>&#8220;;&#8217;<br><strong>Auto increment value: 45<br><br><\/strong># plesk db -Ne&#8217;SELECT CONCAT(&#8220;Primary key name: &#8220;, COLUMN_NAME) FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_SCHEMA = &#8220;psa&#8221; AND TABLE_NAME = &#8220;<strong>DomainServices<\/strong>&#8220;;&#8217;<br><strong>Primary key name: id<br><br><\/strong># plesk db -Ne&#8217;SELECT CONCAT(&#8220;Max value: &#8220;, MAX(<strong>id<\/strong>)) FROM DomainServices&#8217;<br><strong>Max value: 46<\/strong><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Cause<\/h2>\n\n\n\n<p>The AUTO_INCREMENT value for the table is lower than the real maximum PRIMARY KEY value.<\/p>\n\n\n\n<p>This issue could be caused when InnoDB and XtraDB use an auto-increment counter stored in the memory. When the server restarts, the counter is re-initialized. This issue is mentioned for a certain MariaDB version.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Resolution<\/h2>\n\n\n\n<p>Download and use the script to automatically update the improper AUTO_INCREMENTS value: For Plesk on Linux<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Connect to the Plesk server via&nbsp;SSH.<\/li>\n\n\n\n<li>Create a backup of the Plesk database:<\/li>\n<\/ol>\n\n\n\n<p>plesk db dump &gt; psa_dump.sql<\/p>\n\n\n\n<p>Download the script:<\/p>\n\n\n\n<p>curl -LO <a href=\"https:\/\/support.plesk.com\/hc\/en-us\/article_attachments\/360009691780\/115003292185_auto_increment_fix.php.tar.gz\">https:\/\/support.plesk.com\/hc\/en-us\/article_attachments\/360009691780\/115003292185_auto_increment_fix.php.tar.gz<\/a><\/p>\n\n\n\n<p>Unpack the script:<\/p>\n\n\n\n<p>tar xf 115003292185_auto_increment_fix.php.tar.gz<\/p>\n\n\n\n<p>Run the script to analyze the tables:<\/p>\n\n\n\n<p>plesk php 115003292185_auto_increment_fix.php -v -y<\/p>\n\n\n\n<p>Rerun the script until you see:<\/p>\n\n\n\n<p>&#8230;<br>No inconsistencies were detected.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>For Plesk on Windows Server<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Connect to the Plesk server via RDP.<\/li>\n\n\n\n<li>Download&nbsp;the script to your Windows Server.<\/li>\n\n\n\n<li>Extract the script from the zip file on C:\\ disk.<\/li>\n\n\n\n<li>Start a command prompt as an Administrator.<\/li>\n\n\n\n<li>Create a backup of the Plesk database:<\/li>\n<\/ol>\n\n\n\n<p>plesk db dump &gt; C:\\psa_dump.sql<\/p>\n\n\n\n<p>Switch to the folder where extracted script on step 2 is located.<\/p>\n\n\n\n<p>cd C:\\<\/p>\n\n\n\n<p>Run the script:<\/p>\n\n\n\n<p>plesk php 115003292185_auto_increment_fix.php -v -y<\/p>\n\n\n\n<p>Rerun the script until you see:<\/p>\n\n\n\n<p>&#8230;<br>No inconsistencies were detected.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Symptoms Cause The AUTO_INCREMENT value for the table is lower than the real maximum PRIMARY KEY value. This issue could be caused when InnoDB and XtraDB use an auto-increment counter stored in the memory. When the server restarts, the counter is re-initialized. This issue is mentioned for a certain MariaDB version. Resolution Download and use [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3563,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false}}},"categories":[30,35,37],"tags":[97],"class_list":["post-3192","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","category-plesk","category-windows","tag-windows"],"jetpack_publicize_connections":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>An operation fails in Plesk: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry &#039;X&#039; for key &#039;PRIMARY&#039; | 24x7serversupport Blog<\/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.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"An operation fails in Plesk: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry &#039;X&#039; for key &#039;PRIMARY&#039; | 24x7serversupport Blog\" \/>\n<meta property=\"og:description\" content=\"Symptoms Cause The AUTO_INCREMENT value for the table is lower than the real maximum PRIMARY KEY value. This issue could be caused when InnoDB and XtraDB use an auto-increment counter stored in the memory. When the server restarts, the counter is re-initialized. This issue is mentioned for a certain MariaDB version. Resolution Download and use [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/\" \/>\n<meta property=\"og:site_name\" content=\"24x7serversupport Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-06-05T18:31:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-26T12:15:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/06\/1200px-Logo_Plesk.svg_.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"1200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"24x7support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@24x7serversuppo\" \/>\n<meta name=\"twitter:site\" content=\"@24x7serversuppo\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"24x7support\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/\",\"name\":\"An operation fails in Plesk: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'X' for key 'PRIMARY' | 24x7serversupport Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/06\/1200px-Logo_Plesk.svg_.png?fit=1200%2C1200&ssl=1\",\"datePublished\":\"2020-06-05T18:31:00+00:00\",\"dateModified\":\"2023-01-26T12:15:14+00:00\",\"author\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/06\/1200px-Logo_Plesk.svg_.png?fit=1200%2C1200&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/06\/1200px-Logo_Plesk.svg_.png?fit=1200%2C1200&ssl=1\",\"width\":1200,\"height\":1200,\"caption\":\"An operation fails in Plesk: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'X' for key 'PRIMARY'\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.24x7serversupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"An operation fails in Plesk: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry &#8216;X&#8217; for key &#8216;PRIMARY&#8217;\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#website\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/\",\"name\":\"24x7serversupport Blog\",\"description\":\"Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.24x7serversupport.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401\",\"name\":\"24x7support\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/author\/24x7support\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"An operation fails in Plesk: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'X' for key 'PRIMARY' | 24x7serversupport Blog","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.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/","og_locale":"en_US","og_type":"article","og_title":"An operation fails in Plesk: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'X' for key 'PRIMARY' | 24x7serversupport Blog","og_description":"Symptoms Cause The AUTO_INCREMENT value for the table is lower than the real maximum PRIMARY KEY value. This issue could be caused when InnoDB and XtraDB use an auto-increment counter stored in the memory. When the server restarts, the counter is re-initialized. This issue is mentioned for a certain MariaDB version. Resolution Download and use [&hellip;]","og_url":"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/","og_site_name":"24x7serversupport Blog","article_published_time":"2020-06-05T18:31:00+00:00","article_modified_time":"2023-01-26T12:15:14+00:00","og_image":[{"width":1200,"height":1200,"url":"https:\/\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/06\/1200px-Logo_Plesk.svg_.png","type":"image\/png"}],"author":"24x7support","twitter_card":"summary_large_image","twitter_creator":"@24x7serversuppo","twitter_site":"@24x7serversuppo","twitter_misc":{"Written by":"24x7support","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/","url":"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/","name":"An operation fails in Plesk: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'X' for key 'PRIMARY' | 24x7serversupport Blog","isPartOf":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/#primaryimage"},"image":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/06\/1200px-Logo_Plesk.svg_.png?fit=1200%2C1200&ssl=1","datePublished":"2020-06-05T18:31:00+00:00","dateModified":"2023-01-26T12:15:14+00:00","author":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401"},"breadcrumb":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/#primaryimage","url":"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/06\/1200px-Logo_Plesk.svg_.png?fit=1200%2C1200&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/06\/1200px-Logo_Plesk.svg_.png?fit=1200%2C1200&ssl=1","width":1200,"height":1200,"caption":"An operation fails in Plesk: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'X' for key 'PRIMARY'"},{"@type":"BreadcrumbList","@id":"https:\/\/www.24x7serversupport.com\/blog\/an-operation-fails-in-plesk-sqlstate23000-integrity-constraint-violation-1062-duplicate-entry-x-for-key-primary\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.24x7serversupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"An operation fails in Plesk: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry &#8216;X&#8217; for key &#8216;PRIMARY&#8217;"}]},{"@type":"WebSite","@id":"https:\/\/www.24x7serversupport.com\/blog\/#website","url":"https:\/\/www.24x7serversupport.com\/blog\/","name":"24x7serversupport Blog","description":"Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.24x7serversupport.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401","name":"24x7support","url":"https:\/\/www.24x7serversupport.com\/blog\/author\/24x7support\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/06\/1200px-Logo_Plesk.svg_.png?fit=1200%2C1200&ssl=1","jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/3192","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/comments?post=3192"}],"version-history":[{"count":2,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/3192\/revisions"}],"predecessor-version":[{"id":3564,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/3192\/revisions\/3564"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/media\/3563"}],"wp:attachment":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/media?parent=3192"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/categories?post=3192"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/tags?post=3192"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}