{"id":1606,"date":"2016-02-03T09:38:11","date_gmt":"2016-02-02T22:38:11","guid":{"rendered":"https:\/\/mmman.itgroove.net\/?p=1606"},"modified":"2023-02-24T21:39:37","modified_gmt":"2023-02-24T21:39:37","slug":"unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database","status":"publish","type":"post","link":"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/","title":{"rendered":"Unable to Create New SharePoint Farm \u201cCould not obtain exclusive lock on database\u201d"},"content":{"rendered":"<p><span>A while ago I was trying to create a farm at a client site and ran into an issue where I couldn&#8217;t create the farm because I would receive the error message &#8220;Could not obtain exclusive lock on database &#8216;model&#8217;.  Retry the operation later.&#8221;  Just to note, after having gotten past this step (which I&#8217;ll detail below), I continued to get this same error message when trying to create other SharePoint databases (such as during the creation of service applications, and even new content databases).<br \/>\n<\/span><\/p>\n<\/p>\n<p><span>Below is the error message I was seeing when trying to create a new farm: (Could not obtain exclusive lock on database &#8216;model&#8217;)<br \/>\n<\/span><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/regroove.ca\/archive\/wp-content\/uploads\/sites\/6\/2016\/02\/020216_2238_UnabletoCre1.png\" alt=\"\" \/><span><br \/>\n\t\t<\/span><\/p>\n<\/p>\n<p><span>I started by trying to follow this blog post (<a href=\"http:\/\/dbasqlserver13.blogspot.ca\/2013\/10\/error-1807-could-not-obtain-exclusive.html\"><span style=\"color:light blue;font-size:9pt;text-decoration:underline\">http:\/\/dbasqlserver13.blogspot.ca\/2013\/10\/error-1807-could-not-obtain-exclusive.html<\/span><\/a>).  Solution #1 didn&#8217;t work for me.  And actually, Solution #2 didn&#8217;t exactly work for me either, but I found a way (detailed later) to get it to work for me.<br \/>\n<\/span><\/span><\/span><\/p>\n<\/p>\n<p><span style=\"color:#595959\"><span style=\"font-size:9pt\">[Start Referenced Blog Post]<\/span><span><br \/>\n\t\t\t<\/span><\/span><\/p>\n<p style=\"margin-left: 36pt\"><span><strong>Solution 1:<\/strong><br \/>\n\t\t<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span>            Disconnect and Reconnect your SQL Server Management Studio&#8217;s session. Your error will go away.<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\">\n<p style=\"margin-left: 36pt\"><span><strong>Solution 2:<\/strong><br \/>\n\t\t<\/span><\/p>\n<p style=\"margin-left: 36pt\">\n<p style=\"margin-left: 36pt\"><span><strong>Root Cause:<\/strong> Root cause of this error may be one of the following reason<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\">\n<p style=\"margin-left: 36pt\"><span>1. Somebody exclusively open the Model database in different session<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span>2. If more than one create database statements attempt to run simultaneously<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\">\n<p style=\"margin-left: 36pt\"><span>How to identity:<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\">\n<p style=\"margin-left: 36pt\"><span>#1:<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span style=\"color:red;font-family:Georgia\">Use master<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span style=\"color:red;font-family:Georgia\">GO<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span style=\"color:red;font-family:Georgia\">IF EXISTS(SELECT request_session_id  FROM sys.dm_tran_locks<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span style=\"color:red;font-family:Georgia\">WHERE resource_database_id = DB_ID(&#8216;Model&#8217;))<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span style=\"color:red;font-family:Georgia\">PRINT &#8216;Model Database being used by some other session&#8217;<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span style=\"color:red;font-family:Georgia\">ELSE<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span style=\"color:red;font-family:Georgia\">PRINT &#8216;Model Database not used by other session&#8217;<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\">\n<p style=\"margin-left: 36pt\"><span>So we can identify that whether the Model database being exclusively used by any session.., If you found anybody using the Model database exclusively, You can identify what kind of statement being used by the session&#8230;using the script given below<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\">\n<p style=\"margin-left: 36pt\"><span>#2<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span style=\"color:red;font-family:Georgia\">SELECT request_session_id  FROM sys.dm_tran_locks<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span style=\"color:red;font-family:Georgia\">WHERE resource_database_id = DB_ID(&#8216;Model&#8217;)<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\">\n<p style=\"margin-left: 36pt\"><span>The script will return the session ID (i.e: 53)<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span>We have to identity what kind of query\/activity being performed by this session(53).<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\">\n<p style=\"margin-left: 36pt\"><span>#3<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span style=\"color:red;font-family:Georgia\">DBCC InputBuffer(53)<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\">\n<p style=\"margin-left: 36pt\"><img decoding=\"async\" src=\"https:\/\/regroove.ca\/archive\/wp-content\/uploads\/sites\/6\/2016\/02\/020216_2238_UnabletoCre2.png\" alt=\"\" \/><span><br \/>\n\t\t<\/span><\/p>\n<p style=\"margin-left: 36pt\">\n<p style=\"margin-left: 36pt\"><span>The EventInfo column returns the query performed, Based on that, you have to decide whether the Session ID(53) can be Aborted\/ Not. If you want to abort the session(53),<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span>run the following command<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\">\n<p style=\"margin-left: 36pt\"><span>#4<br \/>\n<\/span><\/p>\n<p style=\"margin-left: 36pt\"><span style=\"color:red;font-family:Georgia\">Kill 53 <span><br \/>\n\t\t\t<\/span><\/span><\/p>\n<p style=\"margin-left: 36pt\">\n<p style=\"margin-left: 36pt\"><span>Now you can try to create a new Database..!<br \/>\n<\/span><\/p>\n<p><span> <span style=\"color:#595959;font-size:9pt\">[End Referenced Blog Post]<br \/>\n<\/span><\/span><\/p>\n<\/p>\n<p><span>The above didn&#8217;t quite work for me as it kept running into a lock on the full text search.  To get around this, I actually had to time things right by waiting for any new processes to start up, and then as quickly as possible killing them, followed by rerunning the new-spconfigurationdatabase command.  By timing it right, there was a long enough window available to create the new database, before the next process kicked off for the full text search.  I know what you&#8217;re going to ask next \u2013 why didn&#8217;t you just kill the full text search?  Well, I did, but that didn&#8217;t stop the event from kicking off every 3 or 4 mins regardless.  I think their SQL server was haunted \u2013 but I didn&#8217;t have permissions to do anything about that.<br \/>\n<\/span><\/p>\n<\/p>\n<p><span>Nevertheless, essentially what I did (which finally worked) was as follows.<br \/>\n<\/span><\/p>\n<ol>\n<li><span>Run the steps in #2 above to determine the list of any processes currently running (there can be several at once)<br \/>\n<\/span><\/li>\n<li><span>Kill any currently running processes (using #4 above)<br \/>\n<\/span><\/li>\n<li><span>Run step #2 above for a couple minutes until a new process (or processes) popped up<br \/>\n<\/span><\/li>\n<li><span>As quickly as possible after a new process spins up, kill that process as well<br \/>\n<\/span><\/li>\n<li><span>As quickly as possible after having killed the newest process, kick off the &#8220;new-spconfigurationdatabase&#8221;<br \/>\n<\/span><\/li>\n<\/ol>\n<p>I had to do these same steps whenever trying to create a new service application that had to create a SharePoint database, or a new content database.\n<\/p>\n<p>Hopefully this helps anyone else that may be running into the issue.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A while ago I was trying to create a farm at a client site and ran into an issue where I couldn&#8217;t create the farm because I would receive the error message &#8220;Could not obtain exclusive lock on database &#8216;model&#8217;. Retry the operation later.&#8221; Just to note, after having gotten past this step (which I&#8217;ll &hellip; <a href=\"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/\"><\/a><\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[31,7,32],"tags":[],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Unable to Create New SharePoint Farm \u201cCould not obtain exclusive lock on database\u201d - Archive<\/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:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Unable to Create New SharePoint Farm \u201cCould not obtain exclusive lock on database\u201d - Archive\" \/>\n<meta property=\"og:description\" content=\"A while ago I was trying to create a farm at a client site and ran into an issue where I couldn&#8217;t create the farm because I would receive the error message &#8220;Could not obtain exclusive lock on database &#8216;model&#8217;. Retry the operation later.&#8221; Just to note, after having gotten past this step (which I&#8217;ll &hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/\" \/>\n<meta property=\"og:site_name\" content=\"Archive\" \/>\n<meta property=\"article:published_time\" content=\"2016-02-02T22:38:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-24T21:39:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/regroove.ca\/archive\/wp-content\/uploads\/sites\/6\/2016\/02\/020216_2238_UnabletoCre1.png\" \/>\n<meta name=\"author\" content=\"Colin Phillips (Alumni)\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Colin Phillips (Alumni)\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/\",\"url\":\"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/\",\"name\":\"Unable to Create New SharePoint Farm \u201cCould not obtain exclusive lock on database\u201d - Archive\",\"isPartOf\":{\"@id\":\"https:\/\/regroove.ca\/archive\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/regroove.ca\/archive\/wp-content\/uploads\/sites\/6\/2016\/02\/020216_2238_UnabletoCre1.png\",\"datePublished\":\"2016-02-02T22:38:11+00:00\",\"dateModified\":\"2023-02-24T21:39:37+00:00\",\"author\":{\"@id\":\"https:\/\/regroove.ca\/archive\/#\/schema\/person\/adeb0df1cc7a862160be620ca7eace1b\"},\"breadcrumb\":{\"@id\":\"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/#primaryimage\",\"url\":\"https:\/\/regroove.ca\/archive\/wp-content\/uploads\/sites\/6\/2016\/02\/020216_2238_UnabletoCre1.png\",\"contentUrl\":\"https:\/\/regroove.ca\/archive\/wp-content\/uploads\/sites\/6\/2016\/02\/020216_2238_UnabletoCre1.png\",\"width\":830,\"height\":414},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog Archive\",\"item\":\"https:\/\/regroove.ca\/archive\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Unable to Create New SharePoint Farm \u201cCould not obtain exclusive lock on database\u201d\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/regroove.ca\/archive\/#website\",\"url\":\"https:\/\/regroove.ca\/archive\/\",\"name\":\"Archive\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/regroove.ca\/archive\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/regroove.ca\/archive\/#\/schema\/person\/adeb0df1cc7a862160be620ca7eace1b\",\"name\":\"Colin Phillips (Alumni)\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/regroove.ca\/archive\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/14eeab0d377e9630e0983d9c08911979?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/14eeab0d377e9630e0983d9c08911979?s=96&d=mm&r=g\",\"caption\":\"Colin Phillips (Alumni)\"},\"url\":\"https:\/\/regroove.ca\/archive\/author\/cphillips\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Unable to Create New SharePoint Farm \u201cCould not obtain exclusive lock on database\u201d - Archive","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:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/","og_locale":"en_US","og_type":"article","og_title":"Unable to Create New SharePoint Farm \u201cCould not obtain exclusive lock on database\u201d - Archive","og_description":"A while ago I was trying to create a farm at a client site and ran into an issue where I couldn&#8217;t create the farm because I would receive the error message &#8220;Could not obtain exclusive lock on database &#8216;model&#8217;. Retry the operation later.&#8221; Just to note, after having gotten past this step (which I&#8217;ll &hellip;","og_url":"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/","og_site_name":"Archive","article_published_time":"2016-02-02T22:38:11+00:00","article_modified_time":"2023-02-24T21:39:37+00:00","og_image":[{"url":"https:\/\/regroove.ca\/archive\/wp-content\/uploads\/sites\/6\/2016\/02\/020216_2238_UnabletoCre1.png"}],"author":"Colin Phillips (Alumni)","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Colin Phillips (Alumni)","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/","url":"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/","name":"Unable to Create New SharePoint Farm \u201cCould not obtain exclusive lock on database\u201d - Archive","isPartOf":{"@id":"https:\/\/regroove.ca\/archive\/#website"},"primaryImageOfPage":{"@id":"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/#primaryimage"},"image":{"@id":"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/#primaryimage"},"thumbnailUrl":"https:\/\/regroove.ca\/archive\/wp-content\/uploads\/sites\/6\/2016\/02\/020216_2238_UnabletoCre1.png","datePublished":"2016-02-02T22:38:11+00:00","dateModified":"2023-02-24T21:39:37+00:00","author":{"@id":"https:\/\/regroove.ca\/archive\/#\/schema\/person\/adeb0df1cc7a862160be620ca7eace1b"},"breadcrumb":{"@id":"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/#primaryimage","url":"https:\/\/regroove.ca\/archive\/wp-content\/uploads\/sites\/6\/2016\/02\/020216_2238_UnabletoCre1.png","contentUrl":"https:\/\/regroove.ca\/archive\/wp-content\/uploads\/sites\/6\/2016\/02\/020216_2238_UnabletoCre1.png","width":830,"height":414},{"@type":"BreadcrumbList","@id":"https:\/\/regroove.ca\/archive\/2016\/02\/03\/unable-to-create-new-sharepoint-farm-could-not-obtain-exclusive-lock-on-database\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Archive","item":"https:\/\/regroove.ca\/archive\/"},{"@type":"ListItem","position":2,"name":"Unable to Create New SharePoint Farm \u201cCould not obtain exclusive lock on database\u201d"}]},{"@type":"WebSite","@id":"https:\/\/regroove.ca\/archive\/#website","url":"https:\/\/regroove.ca\/archive\/","name":"Archive","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/regroove.ca\/archive\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/regroove.ca\/archive\/#\/schema\/person\/adeb0df1cc7a862160be620ca7eace1b","name":"Colin Phillips (Alumni)","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/regroove.ca\/archive\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/14eeab0d377e9630e0983d9c08911979?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/14eeab0d377e9630e0983d9c08911979?s=96&d=mm&r=g","caption":"Colin Phillips (Alumni)"},"url":"https:\/\/regroove.ca\/archive\/author\/cphillips\/"}]}},"_links":{"self":[{"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/posts\/1606"}],"collection":[{"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/comments?post=1606"}],"version-history":[{"count":1,"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/posts\/1606\/revisions"}],"predecessor-version":[{"id":1828,"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/posts\/1606\/revisions\/1828"}],"wp:attachment":[{"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/media?parent=1606"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/categories?post=1606"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/tags?post=1606"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}