{"id":211,"date":"2018-08-03T02:19:28","date_gmt":"2018-08-03T02:19:28","guid":{"rendered":"http:\/\/certcent.io\/?p=211"},"modified":"2018-08-03T02:19:28","modified_gmt":"2018-08-03T02:19:28","slug":"windows-2016-server-clustering-70-740","status":"publish","type":"post","link":"https:\/\/certcent.io\/index.php\/2018\/08\/03\/windows-2016-server-clustering-70-740\/","title":{"rendered":"Windows 2016 Server Exam &#8211; Clustering (70-740)"},"content":{"rendered":"<p><strong>Clustering in Windows 2016 for beginners.<\/strong><br \/>\nUp until Windows 2016 clustering, things were going smoothly on my studying and preparing for this exam, but clustering is by far the most challenging section of the exam so far.<br \/>\nFor those Microsoft techs and engineers that have been using the technology on a daily basis, it isn&#8217;t hard to comprehend <strong>disk witnesses and quorums, <\/strong>but for those admins that only see these terms in Microsoft exams, it takes a while to comprehend.<br \/>\nLuckily my lab has been able to simulate a cluster of computers and disks.  Microsoft has created an awesome product that allows for anybody to be able to simulate a full blown cluster with several machines and several disk to fail-over.<br \/>\nHere are some important snippets of Powershell and notes taken away from studying for this portion of the exam (probably repeated hundreds of times already, but that&#8217;s the Internet will live in).<br \/>\n<strong>Getting started.<\/strong><br \/>\nMy lab was created on a Windows 10 Pro box with 16GBs of memory.  The hard drives have a conservative  single SATA 250GB drive, maybe consider a faster newer model running 10K RPM?<br \/>\nI downloaded the latest Windows 2016 Server ISO and created 4 machines, each machine is connected to an Internal Switch on the VM (Internet access is not requried)  I used the subnet 192.168.10.0\/24:<br \/>\nAfter created the DC, I ran the following from a PSSession on each server.  Familiarize or force yourself to use PS for setting everything, because it can be done and because it&#8217;s superior.<\/p>\n<pre class=\"lang:default decode:true\">add-netipaddress 192.168.10.xx -prefixlength 24; set-netipaddress 192.168.10.xx -interfacealias ethernet (ethernet is the default for a new VM); set-dnsclientserveraddress -serveraddresses 192.168.10.10 (DC) ; add-computer -domainname windows.com -credentials windows.com\\administrator<\/pre>\n<p>VM-Name \/CN<br \/>\n2016-lab1\/server1 &#8211; Windows 2016 Server Core with ADSI (192.168.10.10)<br \/>\n2016-lab2\/server2 &#8211; Windows 2016 Server Core <strong>Node 1<\/strong> (192.168.10.20)<br \/>\n2016-lab3\/server3 &#8211; Windows 2016 Server w\/ Desktop Experience <strong>Node 2<\/strong> (192.168.10.30)<br \/>\n2016-lab4\/server4 &#8211; Windows 2016 Server w\/ Desktop Experience ISCSI Target Server (192.168.10.40)<br \/>\n<strong>2016-lab3 &#8211;<br \/>\n<\/strong><\/p>\n<pre class=\"lang:default decode:true\">install-windowsfeature Failing-Clustering ; install-windowsfeature FS-FileServer<\/pre>\n<p><strong>2016-lab2 &#8211; Created the cluster from the node:<br \/>\n<\/strong><\/p>\n<pre class=\"lang:default decode:true\">install-windowsfeature Failing-Clustering ; install-windowsfeature FS-FileServer<\/pre>\n<pre class=\"lang:default decode:true\">new-cluster -name cluster1 -node server2, server3 -staticaddress 192.168.10.100<\/pre>\n<p><strong><br \/>\n<\/strong>(shared address to access resources, if you leave out -staticaddress, the command will return an error), another way to create your cluster, and the way I created my cluster without the CNO is:<\/p>\n<pre class=\"lang:default decode:true\">new-cluster \u2013name cluster1 -node server1,server2 -administrativeaccesspoint dns -nostorage<\/pre>\n<p>Creating the cluster of disks using CSVFS from the VHDX that are attached start with this magic:<\/p>\n<pre class=\"lang:default decode:true \">Enable-ClusterS2D -CacheState Disabled -AutoConfig:0 -SkipEligibilityChecks -Confirm:$false<\/pre>\n<p>Making sure to SkipEligibilityChecks is critical.<br \/>\nOnce you have the disk you can create the volume from the pool.  The volume with add a new directory to the C:\\ClusterStoragePool and create a virtual disk at the same time.<\/p>\n<pre class=\"lang:default decode:true\" title=\"New Virtual Disk\">New-Volume -FriendlyName \"Parity-1-Vol1\" -FileSystem CSVFS_ReFS -StoragePoolFriendlyName S2DPool -Size 1GB -ResiliencySettingName Parity<\/pre>\n<p>(This method is not recommended, but still allows you to administrator the cluster, without some roles and functionality won&#8217;t be available)<br \/>\nThis configuration will create a new object in ADSI called CNO (Cluster Named Object).  Remember the computer creating the cluster needs to have access to create objects in ADSI, not having the permission can cause your cluster to fail to start.  These services may not function properly in an Active-Directory-detached cluster, Hyper-V for live migration (relies on Kerberos), BitLocker drive encryption, or Cluster-Aware updating in selef updating mode.  SQL server though has its on authentication method that will function just fine in this mode.<br \/>\n<strong>The quorum is the essence of a cluster: <\/strong><br \/>\nThe function is to provide each node with a vote and to prevent a cluster from splitting into two function identical servers.  Additionally during the wizard under <strong>Advanced quorum configuration <\/strong> you add <strong>witness<\/strong> to break a tie:<br \/>\nDisk Witness, File Share, or Cloud Witness (hosting on Azure).  A witness is automatically created when there are an even number of nodes.  Only 1 witness per cluster.  A disk witness is recommended when all nodes have access to the same shared storage.<br \/>\n<strong>Dynamic quorum management <\/strong>is the default in Windows 2016, this allows the cluster to continue running without configuring a quorum, where in older versions of Windows might crash a cluster.  <strong>When a node leaves or is unavailable <\/strong>Dynamic quorum management removes its vote.   Failing nodes are removed from voting.<br \/>\nExample, a 5 node cluster losses 3 nodes, you still have 2 nodes running which should function, but only 2 votes, which is below 50%, the cluster shutdowns in this situation.  With dynamic quorum management, the three nodes fail, their votes and removed, the two nodes online are now 100% of the voters and the cluster continues to function.<br \/>\nNodes can be part of a cluster and not have a vote, these are called &#8220;Non-Voting Nodes.&#8221;<br \/>\n<strong>Clustered networking <\/strong>can be broken into a few different types of traffic: <strong>Client<\/strong> communication &#8211; client access to the application running on the cluster, <strong>Cluster<\/strong> communication &#8211; The <strong>heartbeats<\/strong> and other communication between the cluster, <strong>iSCSI <\/strong>&#8211; and all other storage traffic that should be separated from the normal traffic, <strong>Live Migration <\/strong>&#8211; for Hyper-V clusters.<br \/>\nKeys to a successful cluster: Use software physical switches, don&#8217;t just depend on layer three VLANS, separate network adapters, separate manufacturers, and NIC teaming to provide failover capability.<br \/>\n<strong>Defaults generated during new cluster:<br \/>\n<\/strong><\/p>\n<pre class=\"lang:default decode:true\">get-clusternetwork<\/pre>\n<p>&nbsp;<br \/>\n<strong>(<\/strong>will disable properties of the network portion of the cluster)<br \/>\niSCSI network traffic is disabled for cluster communication. networks without a default gateway are configured for cluster communication only, and networks with a default gateway address are configured for client and cluster communication.<br \/>\nYou can modify these default to one of the following: <strong>Allow Cluster Communication On This Network, Allow Clients to Connect Through This Network, and Do Not Allow Cluster Communication on This Network.<\/strong><br \/>\nMaking changes with Powershell use the<\/p>\n<pre class=\"lang:default decode:true\">(get-clusternetwork \"network\").settings<\/pre>\n<p>&nbsp;<br \/>\n= value (unlike most Powershell commands where you use the set-clusternetwork, this uses the get, which was commonly use to modify changes in ADSI before all the new modules for ADSI was released).<br \/>\n<strong>Windows Updates to the Nodes:<br \/>\n<\/strong><strong>Cluster Aware Updating Console <\/strong>is a separate interface that runs on Windows that allows configuration of updates for each node.  It&#8217;s important all nodes have the same version of the OS they are running to accomplish full functionality.<br \/>\nYou specify the type of updating: <strong>Self-Updating Mode<\/strong> &#8211; one of the cluster nodes has the CAU clustered role installed, enabling it to function as the Update Coordinator.  This node updates the nodes in the cluster according to the schedule.<br \/>\n<strong>Remote Updating Mode: <\/strong>A computer outside the cluster is the Update Coordinator.    This computer must have the Failer-Clustering feature installed.<br \/>\n<strong>OS Upgrades in the Nodes:  <\/strong><br \/>\nMixed operating system mode allows for 2012R2 and 2016 servers to run in the same cluster.  Microsoft recommends this mode as a temporary solutions and recommends upgrading the 2012R2 machines in less than month.<br \/>\nTo upgrade the functionality of the cluster is done with the irreversible command in Powershell:<\/p>\n<pre class=\"lang:default decode:true \">Update-ClusterFunctionalLeve<\/pre>\n<p>Before running the command, the procedure to to take a node form 2012R2 to 2016 is as follows:<br \/>\n1. Pause the node.<br \/>\n2. Drain the node of its workload by migrating it to other nodes.<br \/>\nThis will pause and drain the cluster &#8211;<\/p>\n<pre class=\"lang:default decode:true\">Suspend-Cluster -Drain<\/pre>\n<p>3. Evict the node from the cluster.<\/p>\n<pre class=\"lang:default decode:true\">Remove-Cluster<\/pre>\n<p>4. Reformat the system drive and perform a clean installation of Windows Server<br \/>\n2016.<br \/>\n5. Configure network and storage connections.<br \/>\n6. Install the Failover Clustering feature.<\/p>\n<pre class=\"lang:default decode:true\">Install-WindowsFeature Failover-Clustering<\/pre>\n<p>7. Add the newly-installed node back into the cluster.<\/p>\n<pre class=\"lang:default decode:true \">Add-ClusterNode<\/pre>\n<p>8. Reimplement the cluster workload.<br \/>\n<strong>Cluster Storage:<\/strong> Fiber Channel, SAS, iSCSI (used in my virtual lab).<br \/>\nCreated three disks on my ISCSI target (vhdx 1GB), added the server2 and server3 computers to the ISCSI target, and connected each server to the target server4.<br \/>\nAfter the targets were connected, they were available as storage space in my cluster.<br \/>\nYou can leave them as is and create shares,add them to a pool (requires at least 3-4GB disks), or convert them to Cluster Volumes.<br \/>\n<strong>Cluster Shared Volumes <\/strong>create directories on each node c:\\clusterstorage.  This method allows all nodes to access data simultaneously, unlike a shared NTFS cluster volume that only allows one node at a time due to restraints with NTFS metadata.  <strong>CSV <\/strong>sits on top of NTFS and acts like a pseudo file system.<\/p>\n<pre class=\"lang:default decode:true\">add-clustersharedvolume -name \"cluster disk 5\"<\/pre>\n<p>One node owns the volume, but you can move it to another node as needed using the GUI.  Cache exists by default, but the default cache size is 0, effectively disabling it.  Enable it using <strong>(get-cluster).blockcachesize=512.<br \/>\n<\/strong><\/p>\n<pre class=\"lang:default decode:true\">(get-cluternetwork -name \"cluster network 3\").metric<\/pre>\n<p>Will display the current network paths and the lowest metric is what CSV uses to communicate.  Modify by adding = value.<br \/>\n<strong>File Server Type:<br \/>\nFile server for general use (default)<\/strong>, supports DeDupe, File Server Resource Manager, DFS Replication, and other File Servers role services.<br \/>\n<strong>Scale-Out File Server for application data<\/strong>: Leaves files open for extended periods of time, client connections are distributed across nodes in the cluster for better throughput.  Support SMB protocol, but does not support NFS, DFS Replication, or File Server Resource Manager.<br \/>\n<strong>Creating Shares from the clustered disks:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">New-smbshare -name share1 -path c:\\clusteredstorage\\volume1 -full access windows.com\\cluster1 (if you have a CNO object), windows.com\\server2, windows.com\\server3 -continuouslyavailable set-smbpathacl -sharename share1<\/pre>\n<p>References:<br \/>\nHere are all the commands included in the Powershell module FailOverClusters:<\/p>\n<pre class=\"lang:default decode:true\">CommandType     Name                                               Version    Source\n-----------     ----                                               -------    ------\nAlias           Add-VMToCluster                                    2.0.0.0    FailoverClusters\nAlias           Disable-ClusterS2D                                 2.0.0.0    FailoverClusters\nAlias           Enable-ClusterS2D                                  2.0.0.0    FailoverClusters\nAlias           Get-ClusterS2D                                     2.0.0.0    FailoverClusters\nAlias           Remove-VMFromCluster                               2.0.0.0    FailoverClusters\nAlias           Repair-ClusterS2D                                  2.0.0.0    FailoverClusters\nAlias           Set-ClusterS2D                                     2.0.0.0    FailoverClusters\nAlias           Set-ClusterS2DDisk                                 2.0.0.0    FailoverClusters\nFunction        Add-ClusterGroupSetDependency                      2.0.0.0    FailoverClusters\nFunction        Add-ClusterGroupToSet                              2.0.0.0    FailoverClusters\nFunction        Disable-ClusterStorageSpacesDirect                 2.0.0.0    FailoverClusters\nFunction        Enable-ClusterStorageSpacesDirect                  2.0.0.0    FailoverClusters\nFunction        Get-ClusterDiagnosticInfo                          2.0.0.0    FailoverClusters\nFunction        Get-ClusterFaultDomain                             2.0.0.0    FailoverClusters\nFunction        Get-ClusterFaultDomainXML                          2.0.0.0    FailoverClusters\nFunction        Get-ClusterGroupSet                                2.0.0.0    FailoverClusters\nFunction        Get-ClusterGroupSetDependency                      2.0.0.0    FailoverClusters\nFunction        Get-ClusterStorageSpacesDirect                     2.0.0.0    FailoverClusters\nFunction        New-ClusterFaultDomain                             2.0.0.0    FailoverClusters\nFunction        New-ClusterGroupSet                                2.0.0.0    FailoverClusters\nFunction        Remove-ClusterFaultDomain                          2.0.0.0    FailoverClusters\nFunction        Remove-ClusterGroupFromSet                         2.0.0.0    FailoverClusters\nFunction        Remove-ClusterGroupSet                             2.0.0.0    FailoverClusters\nFunction        Remove-ClusterGroupSetDependency                   2.0.0.0    FailoverClusters\nFunction        Repair-ClusterStorageSpacesDirect                  2.0.0.0    FailoverClusters\nFunction        Set-ClusterFaultDomain                             2.0.0.0    FailoverClusters\nFunction        Set-ClusterFaultDomainXML                          2.0.0.0    FailoverClusters\nFunction        Set-ClusterGroupSet                                2.0.0.0    FailoverClusters\nFunction        Set-ClusterStorageSpacesDirect                     2.0.0.0    FailoverClusters\nFunction        Set-ClusterStorageSpacesDirectDisk                 2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterCheckpoint                              2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterDisk                                    2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterFileServerRole                          2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterGenericApplicationRole                  2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterGenericScriptRole                       2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterGenericServiceRole                      2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterGroup                                   2.0.0.0    FailoverClusters\nCmdlet          Add-ClusteriSCSITargetServerRole                   2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterNode                                    2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterResource                                2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterResourceDependency                      2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterResourceType                            2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterScaleOutFileServerRole                  2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterServerRole                              2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterSharedVolume                            2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterVirtualMachineRole                      2.0.0.0    FailoverClusters\nCmdlet          Add-ClusterVMMonitoredItem                         2.0.0.0    FailoverClusters\nCmdlet          Block-ClusterAccess                                2.0.0.0    FailoverClusters\nCmdlet          Clear-ClusterDiskReservation                       2.0.0.0    FailoverClusters\nCmdlet          Clear-ClusterNode                                  2.0.0.0    FailoverClusters\nCmdlet          Get-Cluster                                        2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterAccess                                  2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterAvailableDisk                           2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterCheckpoint                              2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterGroup                                   2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterLog                                     2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterNetwork                                 2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterNetworkInterface                        2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterNode                                    2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterOwnerNode                               2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterParameter                               2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterQuorum                                  2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterResource                                2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterResourceDependency                      2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterResourceDependencyReport                2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterResourceType                            2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterSharedVolume                            2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterSharedVolumeState                       2.0.0.0    FailoverClusters\nCmdlet          Get-ClusterVMMonitoredItem                         2.0.0.0    FailoverClusters\nCmdlet          Grant-ClusterAccess                                2.0.0.0    FailoverClusters\nCmdlet          Move-ClusterGroup                                  2.0.0.0    FailoverClusters\nCmdlet          Move-ClusterResource                               2.0.0.0    FailoverClusters\nCmdlet          Move-ClusterSharedVolume                           2.0.0.0    FailoverClusters\nCmdlet          Move-ClusterVirtualMachineRole                     2.0.0.0    FailoverClusters\nCmdlet          New-Cluster                                        2.0.0.0    FailoverClusters\nCmdlet          New-ClusterNameAccount                             2.0.0.0    FailoverClusters\nCmdlet          Remove-Cluster                                     2.0.0.0    FailoverClusters\nCmdlet          Remove-ClusterAccess                               2.0.0.0    FailoverClusters\nCmdlet          Remove-ClusterCheckpoint                           2.0.0.0    FailoverClusters\nCmdlet          Remove-ClusterGroup                                2.0.0.0    FailoverClusters\nCmdlet          Remove-ClusterNode                                 2.0.0.0    FailoverClusters\nCmdlet          Remove-ClusterResource                             2.0.0.0    FailoverClusters\nCmdlet          Remove-ClusterResourceDependency                   2.0.0.0    FailoverClusters\nCmdlet          Remove-ClusterResourceType                         2.0.0.0    FailoverClusters\nCmdlet          Remove-ClusterSharedVolume                         2.0.0.0    FailoverClusters\nCmdlet          Remove-ClusterVMMonitoredItem                      2.0.0.0    FailoverClusters\nCmdlet          Reset-ClusterVMMonitoredState                      2.0.0.0    FailoverClusters\nCmdlet          Resume-ClusterNode                                 2.0.0.0    FailoverClusters\nCmdlet          Resume-ClusterResource                             2.0.0.0    FailoverClusters\nCmdlet          Set-ClusterLog                                     2.0.0.0    FailoverClusters\nCmdlet          Set-ClusterOwnerNode                               2.0.0.0    FailoverClusters\nCmdlet          Set-ClusterParameter                               2.0.0.0    FailoverClusters\nCmdlet          Set-ClusterQuorum                                  2.0.0.0    FailoverClusters\nCmdlet          Set-ClusterResourceDependency                      2.0.0.0    FailoverClusters\nCmdlet          Start-Cluster                                      2.0.0.0    FailoverClusters\nCmdlet          Start-ClusterGroup                                 2.0.0.0    FailoverClusters\nCmdlet          Start-ClusterNode                                  2.0.0.0    FailoverClusters\nCmdlet          Start-ClusterResource                              2.0.0.0    FailoverClusters\nCmdlet          Stop-Cluster                                       2.0.0.0    FailoverClusters\nCmdlet          Stop-ClusterGroup                                  2.0.0.0    FailoverClusters\nCmdlet          Stop-ClusterNode                                   2.0.0.0    FailoverClusters\nCmdlet          Stop-ClusterResource                               2.0.0.0    FailoverClusters\nCmdlet          Suspend-ClusterNode                                2.0.0.0    FailoverClusters\nCmdlet          Suspend-ClusterResource                            2.0.0.0    FailoverClusters\nCmdlet          Test-Cluster                                       2.0.0.0    FailoverClusters\nCmdlet          Test-ClusterResourceFailure                        2.0.0.0    FailoverClusters\nCmdlet          Update-ClusterFunctionalLevel                      2.0.0.0    FailoverClusters\nCmdlet          Update-ClusterIPResource                           2.0.0.0    FailoverClusters\nCmdlet          Update-ClusterNetworkNameResource                  2.0.0.0    FailoverClusters\nCmdlet          Update-ClusterVirtualMachineConfiguration          2.0.0.0    FailoverClusters<\/pre>\n<p><strong>Restoring a Cluster Node&#8217;s database using wbadmin&#8217;s user interface.<br \/>\n<\/strong>The cluster database stores a copy on each node.  If a node fail, you can restore the system and a full backup will provide a non-authoritative restore that is written over once the node comes back online.  Another situation is when the node running has the latest version of the database.  In this case a special authoritative restore is required using wbadmin&#8217;s command UI.<br \/>\n<strong>wbadmin get versions (<\/strong>this command works for all wbadmin backups.)<br \/>\n<strong>wbadmin get items -version: 11\/14\/2016:05:09 (<\/strong>displays all versions from this backup)<br \/>\n<strong>wbadmin start recovery -itemtype:app -items:cluster &#8211;<br \/>\nversion:01\/01\/2008-00:00<\/strong><br \/>\nAfter the restore is complete, Microsoft provides the instructions required to complete the process.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Clustering in Windows 2016 for beginners. Up until Windows 2016 clustering, things were going smoothly on my studying and preparing for this exam, but clustering is by far the most challenging section of the exam so far. For those Microsoft techs and engineers that have been using the technology on a daily basis, it isn&#8217;t&hellip; <a class=\"more-link\" href=\"https:\/\/certcent.io\/index.php\/2018\/08\/03\/windows-2016-server-clustering-70-740\/\">Continue reading <span class=\"screen-reader-text\">Windows 2016 Server Exam &#8211; Clustering (70-740)<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"_links":{"self":[{"href":"https:\/\/certcent.io\/index.php\/wp-json\/wp\/v2\/posts\/211"}],"collection":[{"href":"https:\/\/certcent.io\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/certcent.io\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/certcent.io\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/certcent.io\/index.php\/wp-json\/wp\/v2\/comments?post=211"}],"version-history":[{"count":0,"href":"https:\/\/certcent.io\/index.php\/wp-json\/wp\/v2\/posts\/211\/revisions"}],"wp:attachment":[{"href":"https:\/\/certcent.io\/index.php\/wp-json\/wp\/v2\/media?parent=211"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/certcent.io\/index.php\/wp-json\/wp\/v2\/categories?post=211"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/certcent.io\/index.php\/wp-json\/wp\/v2\/tags?post=211"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}