{"id":2695,"date":"2018-10-11T21:22:28","date_gmt":"2018-10-11T15:52:28","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=2695"},"modified":"2018-10-12T23:29:55","modified_gmt":"2018-10-12T17:59:55","slug":"how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/","title":{"rendered":"How to Backup OpenVZ containers (VM&#8217;s) using vzdump on Centos \/ RHEL"},"content":{"rendered":"<p><strong>How to Backup OpenVZ containers (VM&#8217;s) using vzdump on Centos \/ RHEL<\/strong><\/p>\n<p><strong>Date Posted : 10-10-2018<\/strong><\/p>\n<p>OpenVZ is a linux based Kernel virtualization technology developed by SWSoft for its commercial product Virtuozzo.In this article we are going to learn about how to backup VM&#8217;s which are running under Hardware node.<\/p>\n<p><strong>Prerequisites:<\/strong><\/p>\n<ul>\n<li>Virtualization setup (one or more VM&#8217;s running under Hardware node) under\u00a0Virtuozzo.<\/li>\n<\/ul>\n<p><strong>Introduction:<\/strong><\/p>\n<p>We may aware that,vzdump is not included in the openvz repository for CentOS\/RHEL.If you need to use vzdump, you have to download its source and compile it yourself. Fortunately,SolusVM includes it in its repo,which can be used on your hardware node if SolusVM not installed.After successful installation we can able to backup your desired virtual machine at your desired location.<\/p>\n<p><strong>I.Installation of VZdump<\/strong><\/p>\n<p><em><span style=\"text-decoration: underline;\">Step 1 <\/span>: Create the file &#8216;solusvm.repo&#8217; and paste the below mentioned content in the path \/etc\/yum.repos.d<\/em><b><em>\u00a0<\/em><\/b><\/p>\n<p><code class=\"EnlighterJSRAW\">cd \/etc\/yum.repos.d<\/code><\/p>\n<p><code class=\"EnlighterJSRAW\">touch solusvm.repo <\/code><\/p>\n<p><code class=\"EnlighterJSRAW\">vi solusvm.repo<br \/>\n<\/code><\/p>\n<p>Content :<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-highlight=\"1,2,3,4,5,\">[soluslabs]\r\nname=Soluslab Repo\r\n#baseurl=http:\/\/repo.soluslabs.com\/centos\/$releasever\/os\/$basearch\r\nmirrorlist=http:\/\/repo.soluslabs.com\/centos\/mirrors-soluslabs\r\ngpgcheck=0\r\nenabled=1<\/pre>\n<p><em><span style=\"text-decoration: underline;\">Step 2 <\/span>: Install vzdump from repo into the server<\/em><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">yum install vzdump<\/code><\/p>\n<p><strong>II.Backup desired VM&#8217;s using\u00a0 vzdump command<\/strong><\/p>\n<p>After successful installation of vzdump command.We are free to take backup of the desired VM&#8217;s.Make sure you\u00a0 have login as root user into Hardware node with full privileges.<\/p>\n<p><em><span style=\"text-decoration: underline;\">Step 1 <\/span>: List the current VM&#8217;s, which are configured under Hardware node.<\/em><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">vzlist -a<\/code><\/p>\n<p>output will be similar to this: (this shows the current status of VM)<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">#vzlist -a\r\n CTID  NPROC   STATUS    IP_ADDR         HOSTNAME\r\n 101   338    running  192.168.0.101  server1.example.com\r\n 102   -      stopped  192.168.0.102  server2.example.com\r\n 103   -      stopped  192.168.0.103  server3.example.com<\/pre>\n<p><em><span style=\"text-decoration: underline;\">Step 2 <\/span>: Locate the directory to store VM&#8217;s backup.<\/em><\/p>\n<p>Now create the directory where the backup will be automatically stored and provide the permission to access the directory. I will use this path \/home\/backup for illustration.You&#8217;re free to use any directory,just make sure that you have enough space in that particular directory where you&#8217;ll store the VM backup.<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">mkdir \/home\/backup<br \/>\n<\/code><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">chmod 700 \/home\/backup<br \/>\n<\/code><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">chown root:root \/home\/backup<\/code><\/p>\n<p><em><span style=\"text-decoration: underline;\">Step 3 <\/span>: How to create backup for single VM<\/em><\/p>\n<p>For this example, I&#8217;m going to use VM &#8216;192.168.0.101&#8217; whose CTID is &#8216;101&#8217;<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">vzdump --compress --dumpdir \/home\/backup 101<\/code><\/p>\n<p>the option &#8211;compress tweak the vzdump to store the backup as tar.gz format inorder to save the memory space.<\/p>\n<p><em><span style=\"text-decoration: underline;\">Step 4 <\/span>:\u00a0How to create backup for all the VM&#8217;s which are configured under one hardware node.<\/em><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">vzdump --compress --dumpdir \/home\/backup --all<\/code><\/p>\n<p><em><strong>Add-on tip<\/strong><\/em><\/p>\n<p><em>&gt;&gt; How to restore the one&#8217;s VM backup into another VM.<\/em><\/p>\n<p>The backup we created using vzdump can be restored with the vzrestore command.For example, restoring the VM 101 from backup to another VM whose CTID is 103<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">vzrestore \/home\/backup\/vzdump-101.tgz 103<\/code><\/p>\n<p>For more info regarding vzrestore options, kindly explore<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">man vzrestore<\/code><\/p>\n<p>&nbsp;<\/p>\n<p><em>I hope it worked safely and successfully. Leave comments for any queries!<\/em><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to Backup OpenVZ containers (VM&#8217;s) using vzdump on Centos \/ RHEL Date Posted : 10-10-2018 OpenVZ is a linux based Kernel virtualization technology developed by SWSoft for its commercial product Virtuozzo.In this article we are going to learn about how to backup VM&#8217;s which are running under Hardware node.&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to Backup OpenVZ containers (VM&#8217;s) using vzdump on Centos \/ RHEL<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[284,225,222,223,268],"tags":[436,435,437,438],"class_list":{"0":"post-2695","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-centos","7":"category-linux","8":"category-linux-commandsscripts","9":"category-shell-script","10":"category-vps","11":"tag-hardware-node","12":"tag-openvz","13":"tag-vzdump","14":"tag-vzrestore","15":"h-entry","17":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/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:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"How to Backup OpenVZ containers (VM&#8217;s) using vzdump on Centos \/ RHEL Date Posted : 10-10-2018 OpenVZ is a linux based Kernel virtualization technology developed by SWSoft for its commercial product Virtuozzo.In this article we are going to learn about how to backup VM&#8217;s which are running under Hardware node.&hellip; Continue Reading How to Backup OpenVZ containers (VM&#8217;s) using vzdump on Centos \/ RHEL\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-11T15:52:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-10-12T17:59:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"How to Backup OpenVZ containers (VM&#8217;s) using vzdump on Centos \\\/ RHEL\",\"datePublished\":\"2018-10-11T15:52:28+00:00\",\"dateModified\":\"2018-10-12T17:59:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\\\/\"},\"wordCount\":419,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"Hardware node\",\"OpenVz\",\"vzdump\",\"vzrestore\"],\"articleSection\":[\"Centos\",\"Linux\",\"Linux Commands\\\/Scripts\",\"Shell script\",\"VPS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2018-10-11T15:52:28+00:00\",\"dateModified\":\"2018-10-12T17:59:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Backup OpenVZ containers (VM&#8217;s) using vzdump on Centos \\\/ RHEL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"How to Backup OpenVZ containers (VM&#8217;s) using vzdump on Centos \/ RHEL Date Posted : 10-10-2018 OpenVZ is a linux based Kernel virtualization technology developed by SWSoft for its commercial product Virtuozzo.In this article we are going to learn about how to backup VM&#8217;s which are running under Hardware node.&hellip; Continue Reading How to Backup OpenVZ containers (VM&#8217;s) using vzdump on Centos \/ RHEL","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2018-10-11T15:52:28+00:00","article_modified_time":"2018-10-12T17:59:55+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"How to Backup OpenVZ containers (VM&#8217;s) using vzdump on Centos \/ RHEL","datePublished":"2018-10-11T15:52:28+00:00","dateModified":"2018-10-12T17:59:55+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/"},"wordCount":419,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["Hardware node","OpenVz","vzdump","vzrestore"],"articleSection":["Centos","Linux","Linux Commands\/Scripts","Shell script","VPS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2018-10-11T15:52:28+00:00","dateModified":"2018-10-12T17:59:55+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-backup-openvz-containers-vms-using-vzdump-on-centos-rhel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Backup OpenVZ containers (VM&#8217;s) using vzdump on Centos \/ RHEL"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-Ht","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2695","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=2695"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2695\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=2695"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=2695"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=2695"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}