{"id":8680,"date":"2016-07-29T08:17:15","date_gmt":"2016-07-29T06:17:15","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/"},"modified":"2022-12-23T16:58:38","modified_gmt":"2022-12-23T15:58:38","slug":"shrinking-oracle-vm-virtualbox-with-zerofree","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/","title":{"rendered":"Shrinking Oracle VM VirtualBox with Zerofree"},"content":{"rendered":"<p>In this blog I would like to talk about Shrinking a Virtual Machine with Oracle databases and MySQL which is install.<br \/>\nUnfortunately, whilst Virtual Box will dynamically expand the hard drive as it\u2019s required, it won\u2019t dynamically shrink it again if you free up space in the VM. The good news is You can shrink a dynamic Virtual Box disk image and so reduce the size of your VM infrastructure.<\/p>\n<p>I have use the <strong>Zerofree<\/strong> utility for scans the free blocks in an ext2 and ext3 file system and fills any non-zero blocks with zeroes. <a href=\"http:\/\/frippery.org\/uml\/zerofree-1.0.4.tgz\">Source<\/a><\/p>\n<h3>Step by step:<\/h3>\n<ul>\n<li>Convert .vmdk to .vdi<\/li>\n<li>Mount the .vdi to another VM<\/li>\n<li>Stop processes Oracle and MySQL<\/li>\n<li>Mount file system on read only<\/li>\n<li>Use zerofree<\/li>\n<li>Shutdown VM<\/li>\n<li>Vboxmanage compact<\/li>\n<li>Convert .vdi to .vmdk is you find any reason not to keep the .vdi<\/li>\n<\/ul>\n<p>I have my Virtual Box extension &#8220;.vmdk&#8221;. The fist step is clone the virtual-disk to &#8220;.vdi&#8221; extension.<br \/>\n<code><br \/>\nroot@computer:\/media\/pio\/Elements1\/Workshop Oracle DBA1 11g\/vmreforadba01# vboxmanage clonehd \"vmrefdba01.vmdk\" \"vmrefdba01.vdi\" --format vdi<br \/>\n0%...10%...20%...30%...40%...50%...60%...70%...80%...<br \/>\n<\/code><\/p>\n<p>When the clone is finish, start the VM with the new file extension &#8220;.vdi&#8221;:<br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/e.png\"><img loading=\"lazy\" decoding=\"async\" class=\" size-full wp-image-10011 aligncenter\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/e.png\" alt=\"shrink\" width=\"935\" height=\"495\"><\/a><\/p>\n<p>Install Zerofree on your VM:<br \/>\n<code><br \/>\n[root@vmrefdba01 zerofree-1.0.4]# yum install e2fsprogs-devel -y<br \/>\n[root@vmrefdba01 zerofree-1.0.4]# wget http:\/\/frippery.org\/uml\/zerofree-1.0.3.tgz<br \/>\n[root@vmrefdba01 zerofree-1.0.4]# tar -zxf zerofree-1.0.3.tgz<br \/>\n[root@vmrefdba01 zerofree-1.0.4]# cd zerofree-1.0.3<br \/>\n[root@vmrefdba01 zerofree-1.0.3]# make<br \/>\n[root@vmrefdba01 zerofree-1.0.3]# cp zerofree \/usr\/bin<br \/>\n<\/code><\/p>\n<p>Stopping all processes Oracle and MySQL for umount the File system:<br \/>\n<code><br \/>\nmysql@vmrefdba01:\/home\/mysql\/ [DUMMY] mysqld_multi stop<br \/>\noracle@vmrefdba01:\/home\/oracle\/ [WSDBA2] sqh<br \/>\nSQL*Plus: Release 12.1.0.2.0 Production on Thu Jul 28 10:27:29 2016<br \/>\nCopyright (c) 1982, 2014, Oracle. All rights reserved.<\/p>\n<p>Connected to:<br \/>\nOracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production<br \/>\nWith the Partitioning, OLAP, Advanced Analytics and Real Application Testing options<\/p>\n<p>SQL&gt; shutdown;<br \/>\nDatabase closed.<br \/>\nDatabase dismounted.<br \/>\nORACLE instance shut down.<br \/>\n<\/code><\/p>\n<p>Mount the File system on Read Only mode:<br \/>\n<code><br \/>\n[root@vmrefdba01 ~]# mount -o ro \/dev\/mapper\/vgdata-lvdata \/oracle\/<br \/>\n[root@vmrefdba01 ~]# mount -l<br \/>\n\/dev\/sda2 on \/ type ext3 (rw)<br \/>\nproc on \/proc type proc (rw)<br \/>\nsysfs on \/sys type sysfs (rw)<br \/>\ndevpts on \/dev\/pts type devpts (rw,gid=5,mode=620)<br \/>\ntmpfs on \/dev\/shm type tmpfs (rw,size=3G)<br \/>\n\/dev\/sda1 on \/boot type ext3 (rw)<br \/>\nnone on \/proc\/sys\/fs\/binfmt_misc type binfmt_misc (rw)<br \/>\nsunrpc on \/var\/lib\/nfs\/rpc_pipefs type rpc_pipefs (rw)<br \/>\ngvfs-fuse-daemon on \/root\/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev)<br \/>\n<strong>\/dev\/mapper\/vgdata-lvdata on \/oracle type ext3 (ro)<\/strong><br \/>\n<\/code><\/p>\n<p>Use the utility Zerofree for scans free blocks:<br \/>\n<code><br \/>\n[root@vmrefdba01 ~]# zerofree \/dev\/mapper\/vgdata-lvdata<br \/>\n<\/code><\/p>\n<p>Shutdown the VM and compact the disk:<br \/>\n<code><br \/>\n[root@vmrefdba01 ~]# shutdown -h now<br \/>\nroot@computer:\/media\/pio\/Elements1\/Workshop Oracle DBA1 11g\/vmreforadba01# vboxmanage modifyhd vmrefdba01.vdi --compact<br \/>\n0%...10%...20%...30%...40%...50%...<br \/>\n<\/code><\/p>\n<p>Check the size with the new VirtualDisk and you can see.. we have won 20Gb with the shrink space \ud83d\ude00<br \/>\n<code><br \/>\nroot@computer:\/media\/pio\/Elements1\/Workshop Oracle DBA1 11g\/vmreforadba01# du -sh *<br \/>\n740K Logs<br \/>\n44M Snapshots<br \/>\n<strong>34G vmrefdba01.vdi<\/strong> --&gt; New disk<br \/>\n54G vmrefdba01.vmdk --&gt; Old disk<br \/>\n<\/code><\/p>\n<p>Optional : If you want you can clone again the VM with the extension &#8220;.vmdk&#8221;.<br \/>\n<code><br \/>\nroot@computer:\/media\/pio\/Elements1\/Workshop Oracle DBA1 11g\/vmreforadba01# vboxmanage clonehd \"vmrefdba01.vdi\" \"vmrefdba01_v1.vmdk\" --format vmdk<br \/>\n0%...10%...20%...30%...40%...<br \/>\n<\/code><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog I would like to talk about Shrinking a Virtual Machine with Oracle databases and MySQL which is install. Unfortunately, whilst Virtual Box will dynamically expand the hard drive as it\u2019s required, it won\u2019t dynamically shrink it again if you free up space in the VM. The good news is You can shrink [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":8682,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[199,42],"tags":[46,892,335,893],"type_dbi":[],"class_list":["post-8680","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-hardware-storage","category-operating-systems","tag-linux-unix","tag-shrinking","tag-virtual-box","tag-zerofree"],"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>Shrinking Oracle VM VirtualBox with Zerofree - 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\/shrinking-oracle-vm-virtualbox-with-zerofree\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Shrinking Oracle VM VirtualBox with Zerofree\" \/>\n<meta property=\"og:description\" content=\"In this blog I would like to talk about Shrinking a Virtual Machine with Oracle databases and MySQL which is install. Unfortunately, whilst Virtual Box will dynamically expand the hard drive as it\u2019s required, it won\u2019t dynamically shrink it again if you free up space in the VM. The good news is You can shrink [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-07-29T06:17:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-23T15:58:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/e-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"935\" \/>\n\t<meta property=\"og:image:height\" content=\"495\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Oracle 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=\"Oracle 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\/shrinking-oracle-vm-virtualbox-with-zerofree\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"Shrinking Oracle VM VirtualBox with Zerofree\",\"datePublished\":\"2016-07-29T06:17:15+00:00\",\"dateModified\":\"2022-12-23T15:58:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/\"},\"wordCount\":252,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/e-1.png\",\"keywords\":[\"Linux\/UNIX\",\"Shrinking\",\"Virtual Box\",\"Zerofree\"],\"articleSection\":[\"Hardware &amp; Storage\",\"Operating systems\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/\",\"name\":\"Shrinking Oracle VM VirtualBox with Zerofree - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/e-1.png\",\"datePublished\":\"2016-07-29T06:17:15+00:00\",\"dateModified\":\"2022-12-23T15:58:38+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/e-1.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/e-1.png\",\"width\":935,\"height\":495},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Shrinking Oracle VM VirtualBox with Zerofree\"}]},{\"@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\/66ab87129f2d357f09971bc7936a77ee\",\"name\":\"Oracle Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"caption\":\"Oracle Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Shrinking Oracle VM VirtualBox with Zerofree - 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\/shrinking-oracle-vm-virtualbox-with-zerofree\/","og_locale":"en_US","og_type":"article","og_title":"Shrinking Oracle VM VirtualBox with Zerofree","og_description":"In this blog I would like to talk about Shrinking a Virtual Machine with Oracle databases and MySQL which is install. Unfortunately, whilst Virtual Box will dynamically expand the hard drive as it\u2019s required, it won\u2019t dynamically shrink it again if you free up space in the VM. The good news is You can shrink [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/","og_site_name":"dbi Blog","article_published_time":"2016-07-29T06:17:15+00:00","article_modified_time":"2022-12-23T15:58:38+00:00","og_image":[{"width":935,"height":495,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/e-1.png","type":"image\/png"}],"author":"Oracle Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oracle Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"Shrinking Oracle VM VirtualBox with Zerofree","datePublished":"2016-07-29T06:17:15+00:00","dateModified":"2022-12-23T15:58:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/"},"wordCount":252,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/e-1.png","keywords":["Linux\/UNIX","Shrinking","Virtual Box","Zerofree"],"articleSection":["Hardware &amp; Storage","Operating systems"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/","url":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/","name":"Shrinking Oracle VM VirtualBox with Zerofree - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/e-1.png","datePublished":"2016-07-29T06:17:15+00:00","dateModified":"2022-12-23T15:58:38+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/e-1.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/e-1.png","width":935,"height":495},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/shrinking-oracle-vm-virtualbox-with-zerofree\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Shrinking Oracle VM VirtualBox with Zerofree"}]},{"@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\/66ab87129f2d357f09971bc7936a77ee","name":"Oracle Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","caption":"Oracle Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/8680","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\/27"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=8680"}],"version-history":[{"count":1,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/8680\/revisions"}],"predecessor-version":[{"id":21267,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/8680\/revisions\/21267"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/8682"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=8680"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=8680"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=8680"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=8680"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}