{"id":20773,"date":"2022-12-01T16:01:54","date_gmt":"2022-12-01T15:01:54","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=20773"},"modified":"2023-09-14T09:22:24","modified_gmt":"2023-09-14T07:22:24","slug":"prepare-failover-cluster-for-ag-configuration","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/","title":{"rendered":"Prepare Failover Cluster for AG configuration"},"content":{"rendered":"\n<p>In this blog I will show you some important powershell commands to prepare a Failover Cluster for AG configuration. Please keep in mind, this is a test environment and I will not talk about firewall rules.<\/p>\n\n\n\n<p>Our objective is to configure a failover cluster with two nodes for a AlwaysOn Availability Group (AG) configuration. <\/p>\n\n\n\n<p>As this is for my tests environment and we need an Active Directory domain name (AD), so I will give you a little guide to install and configure an AD as well.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28.png\" alt=\"\" class=\"wp-image-20794\" width=\"484\" height=\"397\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28.png 968w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28-300x246.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28-768x630.png 768w\" sizes=\"auto, (max-width: 484px) 100vw, 484px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">AD Configuration<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Install the Active Directory domain service feature including tools<br><code>Install-WindowsFeature -name AD-Domain-Services -IncludeManagementTools<\/code><\/li>\n\n\n\n<li>Promote Server as Domain Controller <br>You will be prompted to insert the safe mode Administrator password.<br><code>Install-ADDSForest -CreateDnsDelegation:$false -DatabasePath \"C:\\Windows\\NTDS\" -DomainMode \"WinThreshold\" -DomainName \"mydomain.internal\" -DomainNetbiosName \"MYDOMAIN\" -ForestMode \"WinThreshold\" -InstallDns:$true -LogPath \"C:\\Windows\\NTDS\" -NoRebootOnCompletion:$false -SysvolPath \"C:\\Windows\\SYSVOL\" -Force:$true<\/code><\/li>\n\n\n\n<li>Create a new Organizational Unit (new folder) under your domain in AD <br>This is not mandatory but I prefer to have everything in one place at my AD so, I create this OU.<br><code>New-ADOrganizationalUnit -Name \"sqlserver\" -Path \"DC=MYDOMAIN,DC=INTERNAL\"<\/code><\/li>\n\n\n\n<li>Create users <br>&#8211; sqlengine (manage SQL server engine)<br>&#8211; sqlagent (manage SQL server agent)<br>&#8211; sqldba (manage SQL server instance)<\/li>\n\n\n\n<li>Create group for our DBAs admin<br>&#8211; AdminDBAs &#8211;&gt; add sqldba to this group<\/li>\n\n\n\n<li>Prestage cluster computer objects(<a href=\"https:\/\/learn.microsoft.com\/en-us\/windows-server\/failover-clustering\/prestage-cluster-adds\">Microsoft Documentation<\/a>)<br> &#8211; Create CNO (<a href=\"https:\/\/www.dbi-services.com\/blog\/automate-cnos-and-vcos-for-sql-server-aag\/\">Automate CNOs and VCOs for SQL Server AAG<\/a>)<br>     &#8211; security: full control to the AdminDBAs group<br> &#8211; Create DNS Entery (new host A or AAAA) <br>    &#8211; IP address: 192.168.56.10<br>    &#8211; name: same name as your CNO<br>    &#8211; security: read and write to the CNO <\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Nodes configuration<\/h2>\n\n\n\n<p>We have 2 nodes wintest01 and wintest02. We need to add these two nodes to our domain previously created.<\/p>\n\n\n\n<p>First you need to confirm your communication (connection) between your servers (all three). <br><code>Test-NetConnection -ComputerName 192.168.56.6<\/code><\/p>\n\n\n\n<p>Then add your nodes to the domain<br><code>Add-Computer -DomainName MYDOMAIN -Restart<\/code><\/p>\n\n\n\n<p><strong><em>Here are some important points:<\/em><\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Check your firewall rules<\/li>\n\n\n\n<li>The default gateway for your IPv4 address is AD server IP address<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Failover Cluster configuration<\/h2>\n\n\n\n<p>Install the failover module with all tools on each node (<em>restart is mundatory<\/em>)<br><code>Install-WindowsFeature -Name Failover-Clustering -IncludeManagementTools<\/code><\/p>\n\n\n\n<p>Validate failover cluster hardware and settings. This will generate a report in HTML format. <br><code><code>Test-Cluster -node WINTEST01,WINTEST02 -Ignore 'Storage', 'List Fibre Channel Host Bus Adapters', 'List iSCSI Host Bus Adapters', 'List SAS Host Bus Adapters'\"<\/code><\/code><\/p>\n\n\n\n<p>In my case, I have a warning about network, because for failover cluster it&#8217;s recommended to have at least two network cards. I have only one, I will ignore it as this setup is only for test.<\/p>\n\n\n\n<p>Once your test is successful, you can create your Failover Cluster:<br><code>New-Cluster -Name CLUSTERTEST -Node WINTEST01, WINTEST02 -StaticAddress 192.168.56.10 -NoStorage<\/code><\/p>\n\n\n\n<p>re-run the test command<br><code>Test-Cluster -node WINTEST01,WINTEST02 -Ignore 'Storage', 'List Fibre Channel Host Bus Adapters', 'List iSCSI Host Bus Adapters', 'List SAS Host Bus Adapters'\"<\/code><\/p>\n\n\n\n<p>You will notice that the Quorum is missing. In our case, I will put the Quorum file in AD server. It&#8217;s important to understand, this is not a best practice. In prod configuration it&#8217;s recommended to put this file in a file share server.<\/p>\n\n\n\n<p><code>Set-ClusterQuorum -Cluster CLUSTERTEST -FileShareWitness \"\\WIN-ASA-AD\\Quorum_clustertest\"<\/code><\/p>\n\n\n\n<p><strong><em>Here are some important points:<\/em><\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create your CNO and DNS entery before (Prestage cluster computer objects)<\/li>\n\n\n\n<li>Make sure your CNO is disabled. This CNO will be activated during the creation of your failover cluster<\/li>\n\n\n\n<li>Make sure you have -NoStorage option. This will ignore all shared storage during the cluster creation. You can find more information at the following blog: <a href=\"https:\/\/www.dbi-services.com\/blog\/sql-server-alwayson-node-and-add-all-eligible-storage-to-the-cluster\/\">SQL Server AlwaysOn node \u201cAdd all eligible storage to the cluster\u201d<\/a><\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<p>Here we go, now you have your Failover Cluster \ud83d\ude00<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog I will show you some important powershell commands to prepare a Failover Cluster for AG configuration. Please keep in mind, this is a test environment and I will not talk about firewall rules. Our objective is to configure a failover cluster with two nodes for a AlwaysOn Availability Group (AG) configuration. As [&hellip;]<\/p>\n","protected":false},"author":26,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[99],"tags":[1279,297,464],"type_dbi":[],"class_list":["post-20773","post","type-post","status-publish","format-standard","hentry","category-sql-server","tag-active-directory","tag-availability-groups","tag-failover-cluster"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Prepare Failover Cluster for AG configuration - dbi 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.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Prepare Failover Cluster for AG configuration\" \/>\n<meta property=\"og:description\" content=\"In this blog I will show you some important powershell commands to prepare a Failover Cluster for AG configuration. Please keep in mind, this is a test environment and I will not talk about firewall rules. Our objective is to configure a failover cluster with two nodes for a AlwaysOn Availability Group (AG) configuration. As [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-01T15:01:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-14T07:22:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28.png\" \/>\n<meta name=\"author\" content=\"Microsoft Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Microsoft Team\" \/>\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\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/\"},\"author\":{\"name\":\"Microsoft Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"headline\":\"Prepare Failover Cluster for AG configuration\",\"datePublished\":\"2022-12-01T15:01:54+00:00\",\"dateModified\":\"2023-09-14T07:22:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/\"},\"wordCount\":508,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28.png\",\"keywords\":[\"Active Directory\",\"Availability groups\",\"Failover cluster\"],\"articleSection\":[\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/\",\"name\":\"Prepare Failover Cluster for AG configuration - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28.png\",\"datePublished\":\"2022-12-01T15:01:54+00:00\",\"dateModified\":\"2023-09-14T07:22:24+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28.png\",\"width\":968,\"height\":794},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Prepare Failover Cluster for AG configuration\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\",\"name\":\"Microsoft Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"caption\":\"Microsoft Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/microsoft-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Prepare Failover Cluster for AG configuration - dbi 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.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/","og_locale":"en_US","og_type":"article","og_title":"Prepare Failover Cluster for AG configuration","og_description":"In this blog I will show you some important powershell commands to prepare a Failover Cluster for AG configuration. Please keep in mind, this is a test environment and I will not talk about firewall rules. Our objective is to configure a failover cluster with two nodes for a AlwaysOn Availability Group (AG) configuration. As [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/","og_site_name":"dbi Blog","article_published_time":"2022-12-01T15:01:54+00:00","article_modified_time":"2023-09-14T07:22:24+00:00","og_image":[{"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28.png","type":"","width":"","height":""}],"author":"Microsoft Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Microsoft Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/"},"author":{"name":"Microsoft Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"headline":"Prepare Failover Cluster for AG configuration","datePublished":"2022-12-01T15:01:54+00:00","dateModified":"2023-09-14T07:22:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/"},"wordCount":508,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28.png","keywords":["Active Directory","Availability groups","Failover cluster"],"articleSection":["SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/","url":"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/","name":"Prepare Failover Cluster for AG configuration - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28.png","datePublished":"2022-12-01T15:01:54+00:00","dateModified":"2023-09-14T07:22:24+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/11\/Screenshot-2022-11-30-at-15.37.28.png","width":968,"height":794},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/prepare-failover-cluster-for-ag-configuration\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Prepare Failover Cluster for AG configuration"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4","name":"Microsoft Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","caption":"Microsoft Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/microsoft-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/20773","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/26"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=20773"}],"version-history":[{"count":32,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/20773\/revisions"}],"predecessor-version":[{"id":22344,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/20773\/revisions\/22344"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=20773"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=20773"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=20773"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=20773"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}